mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Repaint the dives in dive_list_update_dives() instead of in callers
Each caller ends up needing it, and I missed another one. So rather than update the other caller, just do it in dive_list_update_dives() and we can stop worrying about it. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
98d556c6f6
commit
f7a36cfefd
2 changed files with 1 additions and 1 deletions
|
@ -67,6 +67,7 @@ void dive_list_update_dives(struct DiveList dive_list)
|
|||
{
|
||||
gtk_list_store_clear(GTK_LIST_STORE(dive_list.model));
|
||||
fill_dive_list(GTK_LIST_STORE(dive_list.model));
|
||||
repaint_dive();
|
||||
}
|
||||
|
||||
struct DiveList dive_list_create(void)
|
||||
|
|
1
main.c
1
main.c
|
@ -166,7 +166,6 @@ static void file_open(GtkWidget *w, gpointer data)
|
|||
}
|
||||
g_slist_free(filenames);
|
||||
report_dives();
|
||||
repaint_dive();
|
||||
dive_list_update_dives(dive_list);
|
||||
}
|
||||
gtk_widget_destroy(dialog);
|
||||
|
|
Loading…
Add table
Reference in a new issue