From: John Ellis Date: Thu, 19 Oct 2006 11:45:14 +0000 (+0000) Subject: Thu Oct 19 07:42:38 2006 John Ellis X-Git-Tag: v1.0.0~1723 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=3f30d3bfc2ca37daf8f1af1babbd0571ecff4ea5 Thu Oct 19 07:42:38 2006 John Ellis * utilops.c: Fix minimum allowed auto-rename value to be zero again, but keep the default at 1. --- diff --git a/ChangeLog b/ChangeLog index 08680e5c..6a91f848 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Oct 19 07:42:38 2006 John Ellis + + * 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 * cache_maint.c, thumb_standard.[ch]: Use .thumblocal when saving diff --git a/src/utilops.c b/src/utilops.c index 811eeca8..ce059ca7 100644 --- a/src/utilops.c +++ b/src/utilops.c @@ -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);