Repair broken Add Dive menu item

Lubomir's commit aec904b612 broke the Add
Dive menu item:  The Edit Dive dialogue didn't show up after the initial
dialogue.

Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Henrik Brautaset Aronsen 2012-11-04 20:35:59 +01:00 committed by Dirk Hohndel
parent 45fce18fb2
commit 37e3ade2e2
3 changed files with 6 additions and 5 deletions

7
info.c
View file

@ -792,10 +792,11 @@ int edit_multi_dive_info(struct dive *single_dive)
return success;
}
int edit_dive_info(struct dive *dive)
int edit_dive_info(struct dive *dive, gboolean newdive)
{
if (!dive || !amount_selected)
if (!dive || (!newdive && !amount_selected))
return 0;
return edit_multi_dive_info(dive);
}
@ -938,7 +939,7 @@ int add_new_dive(struct dive *dive)
if (!dive_time_widget(dive))
return 0;
return edit_dive_info(dive);
return edit_dive_info(dive, TRUE);
}
GtkWidget *extended_dive_info_widget(void)