diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-05 20:50:52 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-05 20:50:52 -0700 |
commit | f7a36cfefd15a46494adfbf237f2db7f97d1fb1b (patch) | |
tree | dc1f15d5b2110ae1c5bca288421889676a606a26 /divelist.c | |
parent | 98d556c6f69c63e8fd89b7a435f641fbdd836324 (diff) | |
download | subsurface-f7a36cfefd15a46494adfbf237f2db7f97d1fb1b.tar.gz |
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>
Diffstat (limited to 'divelist.c')
-rw-r--r-- | divelist.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/divelist.c b/divelist.c index 5dc45657b..a6ffda8e8 100644 --- a/divelist.c +++ b/divelist.c @@ -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) |