Mercurial > geeqie.yaz
changeset 80:a10fc0308c12
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.
author | gqview |
---|---|
date | Thu, 19 Oct 2006 11:45:14 +0000 |
parents | 528e3432e0c0 |
children | 0ef72a64930b |
files | ChangeLog src/utilops.c |
diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <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
--- 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);