changeset 619:2ccc7d856d55

Initialize to correct value (OSD_SHOW_NOTHING instead of FALSE).
author zas_
date Sat, 10 May 2008 12:33:52 +0000
parents b1a922a32d9c
children f335373f44e5
files src/options.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/options.c	Sat May 10 09:00:14 2008 +0000
+++ b/src/options.c	Sat May 10 12:33:52 2008 +0000
@@ -13,6 +13,7 @@
 #include "options.h"
 
 #include "histogram.h" /* HCHAN_RGB */
+#include "image-overlay.h" /* OSD_SHOW_NOTHING */
 
 ConfOptions *init_options(ConfOptions *options)
 {
@@ -73,7 +74,7 @@
 	options->image.zoom_quality = (gint)GDK_INTERP_BILINEAR;
 	options->image.zoom_to_fit_allow_expand = TRUE;
 
-	options->image_overlay.common.enabled = FALSE;
+	options->image_overlay.common.enabled = (guint)OSD_SHOW_NOTHING;
 	options->image_overlay.common.show_at_startup = FALSE;
 	options->image_overlay.common.template_string = NULL;