Remove commented out code.
[geeqie.git] / src / options.c
index d333caf..de09246 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Geeqie
- * Copyright (C) 2008 - 2010 The Geeqie Team
+ * Copyright (C) 2008 - 2012 The Geeqie Team
  *
  * Authors: Vladimir Nadvornik, Laurent Monin
  *
@@ -63,9 +63,9 @@ ConfOptions *init_options(ConfOptions *options)
        options->fullscreen.screen = -1;
 
        memset(&options->image.border_color, 0, sizeof(options->image.border_color));
-       options->image.dither_quality = GDK_RGB_DITHER_NORMAL;
        options->image.enable_read_ahead = TRUE;
        options->image.exif_rotate_enable = TRUE;
+       options->image.exif_proof_rotate_enable = TRUE;
        options->image.fit_window_to_image = FALSE;
        options->image.limit_autofit_size = FALSE;
        options->image.limit_window_size = TRUE;
@@ -125,12 +125,12 @@ ConfOptions *init_options(ConfOptions *options)
        options->tree_descend_subdirs = FALSE;
        options->update_on_time_change = TRUE;
        
-       options->stereo.fixed_w = 640;
-       options->stereo.fixed_h = 200;
+       options->stereo.fixed_w = 1920;
+       options->stereo.fixed_h = 1080;
        options->stereo.fixed_x1 = 0;
-       options->stereo.fixed_y1 = 20;
+       options->stereo.fixed_y1 = 0;
        options->stereo.fixed_x2 = 0;
-       options->stereo.fixed_y2 = 260;
+       options->stereo.fixed_y2 = 1125;
 
        return options;
 }
@@ -160,11 +160,6 @@ void setup_default_options(ConfOptions *options)
 
        options->shell.path = g_strdup(GQ_DEFAULT_SHELL_PATH);
        options->shell.options = g_strdup(GQ_DEFAULT_SHELL_OPTIONS);
-
-#if 0  
-       for (i = 0; ExifUIList[i].key; i++)
-               ExifUIList[i].current = ExifUIList[i].default_value;
-#endif
 }
 
 void copy_layout_options(LayoutOptions *dest, const LayoutOptions *src)