From: Linus Torvalds Date: Wed, 25 Apr 2012 02:05:56 +0000 (-0700) Subject: Make sure to update dive info when it is edited X-Git-Url: http://git.tdb.fi/?p=ext%2Fsubsurface.git;a=commitdiff_plain;h=99708bb40e2d0f0e1ddfa6ec56a192e3878d511b Make sure to update dive info when it is edited We used to not properly update the dive info until we switched to another dive when we edited it. This should fix it. Signed-off-by: Linus Torvalds --- diff --git a/info.c b/info.c index f1afc05..813d58a 100644 --- a/info.c +++ b/info.c @@ -352,7 +352,7 @@ static void save_dive_info_changes(struct dive *dive, struct dive_info *info) if (changed) { mark_divelist_changed(TRUE); - flush_divelist(dive); + update_dive(dive); } }