diff --git a/ChangeLog b/ChangeLog index 7d85633d4f..477ff37418 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-03-04 Simon Budig + + * plug-ins/common/animationplay.c: Display Frame numbers from + 1 to n instead of 0 to n-1. Less confusing for the user. + + Fixes bug #136124 + 2004-03-04 Sven Neumann * Made 2.0pre4 release. diff --git a/plug-ins/common/animationplay.c b/plug-ins/common/animationplay.c index 6d15f61a4f..4deebe435d 100644 --- a/plug-ins/common/animationplay.c +++ b/plug-ins/common/animationplay.c @@ -1238,7 +1238,7 @@ show_frame (void) gtk_progress_bar_set_fraction (progress, ((float)frame_number / (float)(total_frames-0.999))); - text = g_strdup_printf (_("Frame %d of %d"), frame_number, total_frames); + text = g_strdup_printf (_("Frame %d of %d"), frame_number + 1, total_frames); gtk_progress_bar_set_text (progress, text); g_free (text); }