]> git.tdb.fi Git - ext/subsurface.git/commitdiff
Fix oversight in preference implementation
authorDirk Hohndel <dirk@hohndel.org>
Sun, 23 Oct 2011 21:23:58 +0000 (14:23 -0700)
committerDirk Hohndel <dirk@hohndel.org>
Sun, 23 Oct 2011 21:23:58 +0000 (14:23 -0700)
Not being careful enough doing copy and paste and then making manual
changes... this inconsistency caused subsurface to always store the
opposite of what you wanted in the preferences for SAC and O2%.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
gtk-gui.c

index 9eb23ab18c525e59da95b81b9c2cc3c3fced2373..47cab62fabc46f0d060d17e821434ce41d4bc211 100644 (file)
--- a/gtk-gui.c
+++ b/gtk-gui.c
@@ -649,9 +649,9 @@ void init_ui(int argc, char **argv)
        /* an unset key is FALSE - all these are hidden by default */
        visible_cols.cylinder = gconf_client_get_bool(gconf, GCONF_NAME(CYLINDER), NULL);
        visible_cols.temperature = gconf_client_get_bool(gconf, GCONF_NAME(TEMPERATURE), NULL);
-       visible_cols.nitrox = gconf_client_get_bool(gconf, GCONF_NAME(NITROX), NULL);
+       visible_cols.nitrox = gconf_client_get_bool(gconf, GCONF_NAME(NITROX), NULL);
        visible_cols.otu = gconf_client_get_bool(gconf, GCONF_NAME(OTU), NULL);
-       visible_cols.sac = gconf_client_get_bool(gconf, GCONF_NAME(SAC), NULL);
+       visible_cols.sac = gconf_client_get_bool(gconf, GCONF_NAME(SAC), NULL);
                
        divelist_font = gconf_client_get_string(gconf, GCONF_NAME(divelist_font), NULL);
        if (!divelist_font)