Thu Oct 19 07:42:38 2006 John Ellis <johne@verizon.net>
authorJohn Ellis <johne@verizon.net>
Thu, 19 Oct 2006 11:45:14 +0000 (11:45 +0000)
committerJohn Ellis <johne@verizon.net>
Thu, 19 Oct 2006 11:45:14 +0000 (11:45 +0000)
        * utilops.c: Fix minimum allowed auto-rename value to be zero again,
        but keep the default at 1.

ChangeLog
src/utilops.c

index 08680e5..6a91f84 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Oct 19 07:42:38 2006  John Ellis  <johne@verizon.net>
+
+       * utilops.c: Fix minimum allowed auto-rename value to be zero again,
+       but keep the default at 1.
+
 Thu Oct 19 07:23:37 2006  John Ellis  <johne@verizon.net>
 
        * cache_maint.c, thumb_standard.[ch]: Use .thumblocal when saving
index 811eeca..ce059ca 100644 (file)
@@ -2357,7 +2357,7 @@ static void file_util_rename_multiple_do(GList *source_list, GtkWidget *parent)
        box2 = furm_simple_vlabel(hbox, _("Start #"), FALSE);
 
        rd->auto_spin_start = pref_spin_new(box2, NULL, NULL,
-                                           1.0, 1000000.0, 1.0, 0, 0.0,
+                                           0.0, 1000000.0, 1.0, 0, 1.0,
                                            G_CALLBACK(file_util_rename_multiple_preview_adj_cb), rd);
 
        box2 = furm_simple_vlabel(hbox, _("End text"), TRUE);
@@ -2389,7 +2389,7 @@ static void file_util_rename_multiple_do(GList *source_list, GtkWidget *parent)
        box2 = furm_simple_vlabel(hbox, _("Start #"), FALSE);
 
        rd->format_spin = pref_spin_new(box2, NULL, NULL,
-                                       1.0, 1000000.0, 1.0, 0, 0.0,
+                                       0.0, 1000000.0, 1.0, 0, 1.0,
                                        G_CALLBACK(file_util_rename_multiple_preview_adj_cb), rd);
 
        image_change_path(rd->imd, rd->fd->source_path, 0.0);