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:
Michael Natterer 2004-10-11 11:27:26 +00:00 committed by Michael Natterer
parent 422122665e
commit 1db1a19574
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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++)
{