We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 085f43a commit dcaba43Copy full SHA for dcaba43
src/libs/geotagging.c
@@ -1763,6 +1763,15 @@ void gui_reset(dt_lib_module_t *self)
1763
dt_lib_geotagging_t *d = self->data;
1764
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(d->lock_offset), false);
1765
_refresh_image_datetime(self);
1766
+
1767
+#ifdef HAVE_MAP
1768
+ if(d->map.view)
1769
+ {
1770
+ gtk_label_set_text(GTK_LABEL(d->map.gpx_file), "");
1771
+ _remove_tracks_from_map(self);
1772
+ gtk_widget_set_visible(d->map.gpx_view, FALSE);
1773
+ }
1774
+#endif
1775
}
1776
1777
void gui_init(dt_lib_module_t *self)
0 commit comments