summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gtk-gui.c2
-rw-r--r--main.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/gtk-gui.c b/gtk-gui.c
index d6ab412c7..cecfb7259 100644
--- a/gtk-gui.c
+++ b/gtk-gui.c
@@ -130,7 +130,6 @@ static void file_open(GtkWidget *w, gpointer data)
}
g_slist_free(filenames);
report_dives();
- dive_list_update_dives();
}
gtk_widget_destroy(dialog);
}
@@ -881,7 +880,6 @@ void import_dialog(GtkWidget *w, gpointer data)
gtk_widget_destroy(dialog);
report_dives();
- dive_list_update_dives();
}
void update_progressbar(progressbar_t *progress, double value)
diff --git a/main.c b/main.c
index 92eb9ee09..d259b3888 100644
--- a/main.c
+++ b/main.c
@@ -76,6 +76,8 @@ void report_dives(void)
/* Redo the new 'i'th dive */
i--;
}
+
+ dive_list_update_dives();
}
static void parse_argument(const char *arg)
@@ -150,7 +152,6 @@ int main(int argc, char **argv)
}
report_dives();
- dive_list_update_dives();
run_ui();
return 0;