summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main.c21
1 files changed, 17 insertions, 4 deletions
diff --git a/main.c b/main.c
index 970e85ffb..4d96fa7c4 100644
--- a/main.c
+++ b/main.c
@@ -243,11 +243,11 @@ static void create_radio(GtkWidget *dialog, const char *name, ...)
static void name(GtkWidget *w, gpointer data) \
{ \
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w))) \
- output_units.type = value; \
- repaint_dive(); \
- dive_list_update_dives(dive_list); \
+ menu_units.type = value; \
}
+static struct units menu_units;
+
UNITCALLBACK(set_meter, length, METERS)
UNITCALLBACK(set_feet, length, FEET)
UNITCALLBACK(set_bar, pressure, BAR)
@@ -259,11 +259,17 @@ UNITCALLBACK(set_fahrenheit, temperature, FAHRENHEIT)
static void unit_dialog(GtkWidget *w, gpointer data)
{
+ int result;
GtkWidget *dialog;
+ menu_units = output_units;
+
dialog = gtk_dialog_new_with_buttons("Units",
GTK_WINDOW(main_window),
- GTK_DIALOG_DESTROY_WITH_PARENT, NULL);
+ GTK_DIALOG_DESTROY_WITH_PARENT,
+ GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
+ GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
+ NULL);
create_radio(dialog, "Depth:",
"Meter", set_meter, (output_units.length == METERS),
@@ -286,6 +292,13 @@ static void unit_dialog(GtkWidget *w, gpointer data)
NULL);
gtk_widget_show(dialog);
+ result = gtk_dialog_run(GTK_DIALOG(dialog));
+ if (result == GTK_RESPONSE_ACCEPT) {
+ output_units = menu_units;
+ repaint_dive();
+ dive_list_update_dives(dive_list);
+ }
+ gtk_widget_destroy(dialog);
}
static GtkActionEntry menu_items[] = {