mirror of https://github.com/GNOME/gimp.git
user-visible counting starts at 1, not 0.
2004-10-11 Michael Natterer <mitch@gimp.org> * app/widgets/gimpthumbbox.c (gimp_thumb_box_create_thumbnails): user-visible counting starts at 1, not 0.
This commit is contained in:
parent
422122665e
commit
1db1a19574
|
@ -1,3 +1,8 @@
|
|||
2004-10-11 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/widgets/gimpthumbbox.c (gimp_thumb_box_create_thumbnails):
|
||||
user-visible counting starts at 1, not 0.
|
||||
|
||||
2004-10-11 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* tools/authorsgen/contributors: added missing contributors.
|
||||
|
|
|
@ -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++)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue