diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-10 12:06:18 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-10 12:10:26 -0800 |
commit | 05990b107de746064486f4f1c79a2383e1dfd63f (patch) | |
tree | 3c7dd65a31dcdae03c07e1d688fb1edd78e58ded /info.c | |
parent | 68eca79dfdaec7dfd1c534f1d8daf8421ea94579 (diff) | |
download | subsurface-05990b107de746064486f4f1c79a2383e1dfd63f.tar.gz |
Fix saving of changed GPS entry
We can't use gps_changed() in the gps_map_callback function, because that
will actually change the GPS data in the dive being edited, which in turn
will then cause us to later (when we *really* want to change it) not match
the master dive data any more, and think we shouldn't edit the dive at
all.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'info.c')
-rw-r--r-- | info.c | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -669,22 +669,27 @@ static void update_gps_entry(int lat, int lon) } } +#if HAVE_OSM_GPS_MAP static void update_gps_entry_callback(float lat, float lon) { update_gps_entry(lat * 1000000, lon * 1000000); + location_update.set_by_hand = 1; } -#if HAVE_OSM_GPS_MAP static gboolean gps_map_callback(GtkWidget *w, gpointer data) { + double latitude, longitude; const char *gps_text = NULL; - struct dive *dive = location_update.dive; + struct dive fake_dive; + + memset(&fake_dive, 0, sizeof(fake_dive)); if (location_update.entry) { gps_text = gtk_entry_get_text(location_update.entry); - (void)gps_changed(dive, NULL, gps_text); + parse_gps_text(gps_text, &latitude, &longitude); + fake_dive.latitude.udeg = rint(latitude * 1000000); + fake_dive.longitude.udeg = rint(longitude * 1000000); } - show_gps_location(dive, update_gps_entry_callback); - location_update.set_by_hand = 1; + show_gps_location(&fake_dive, update_gps_entry_callback); return TRUE; } #endif |