diff --git a/ChangeLog b/ChangeLog index 3fa4573a56..20c4dcaeff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-10-11 Michael Natterer + + * app/widgets/gimpthumbbox.c (gimp_thumb_box_create_thumbnails): + user-visible counting starts at 1, not 0. + 2004-10-11 Michael Natterer * tools/authorsgen/contributors: added missing contributors. diff --git a/app/widgets/gimpthumbbox.c b/app/widgets/gimpthumbbox.c index 1b9ef1c7c1..32c20d3cff 100644 --- a/app/widgets/gimpthumbbox.c +++ b/app/widgets/gimpthumbbox.c @@ -579,7 +579,7 @@ gimp_thumb_box_create_thumbnails (GimpThumbBox *box, gtk_widget_show (box->thumb_progress); - for (list = box->uris->next, i = 0; + for (list = box->uris->next, i = 1; list; list = g_slist_next (list), i++) {