# HG changeset patch # User gqview # Date 1161258314 0 # Node ID a10fc0308c120b965c70fbd86e8c6ba5f87fd1af # Parent 528e3432e0c055a0d88bd33ab347758bf4aeb879 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 -r 528e3432e0c0 -r a10fc0308c12 ChangeLog --- a/ChangeLog Thu Oct 19 11:34:52 2006 +0000 +++ b/ChangeLog Thu Oct 19 11:45:14 2006 +0000 @@ -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 -r 528e3432e0c0 -r a10fc0308c12 src/utilops.c --- a/src/utilops.c Thu Oct 19 11:34:52 2006 +0000 +++ b/src/utilops.c Thu Oct 19 11:45:14 2006 +0000 @@ -2357,7 +2357,7 @@ 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 @@ 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);