[Goodies-commits] r7343 - ristretto/trunk/src

Stephan Arts stephan at xfce.org
Fri May 15 20:16:12 CEST 2009


Author: stephan
Date: 2009-05-15 18:16:12 +0000 (Fri, 15 May 2009)
New Revision: 7343

Modified:
   ristretto/trunk/src/main_window.c
Log:
Fix non-zero-page-size warnign



Modified: ristretto/trunk/src/main_window.c
===================================================================
--- ristretto/trunk/src/main_window.c	2009-05-15 17:22:44 UTC (rev 7342)
+++ ristretto/trunk/src/main_window.c	2009-05-15 18:16:12 UTC (rev 7343)
@@ -1394,7 +1394,7 @@
     GtkWidget *cache_label;
     GtkWidget *cache_mb_label;
 
-    cache_adjustment = gtk_adjustment_new(rstto_main_window_get_max_cache_size(window), 0, 9999, 1, 100, 100);
+    cache_adjustment = gtk_adjustment_new(rstto_main_window_get_max_cache_size(window), 0, 9999, 1, 100, 0);
 
     GtkWidget *dialog = xfce_titled_dialog_new_with_buttons(_("Image viewer Preferences"),
                                                     GTK_WINDOW(window),




More information about the Goodies-commits mailing list