From c83dbf1ef9687d06cc69ffd55d2b64c0767ded73 Mon Sep 17 00:00:00 2001 From: dooglus Date: Wed, 24 Sep 2008 13:51:53 +0000 Subject: [PATCH] Fix a bug that was causing the timeslider to not be displayed in certain circumstances. git-svn-id: https://synfig.svn.sourceforge.net/svnroot/synfig@2070 1f10aa63-cdf2-0310-b900-c93c546f37ac --- synfig-studio/trunk/src/gtkmm/widget_timeslider.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/synfig-studio/trunk/src/gtkmm/widget_timeslider.cpp b/synfig-studio/trunk/src/gtkmm/widget_timeslider.cpp index f46b0c8..cdf5ea7 100644 --- a/synfig-studio/trunk/src/gtkmm/widget_timeslider.cpp +++ b/synfig-studio/trunk/src/gtkmm/widget_timeslider.cpp @@ -549,6 +549,7 @@ bool Widget_Timeslider::redraw(bool /*doublebuffer*/) double t = (time/scale - floor(time/scale))*subdiv; // the difference from the big mark in 0:1 //sdindex = (int)floor(t + 0.5); //get how far through the range it is... sdindex = round_to_int(t); //get how far through the range it is... + if (sdindex == subdiv) sdindex = 0; //synfig::info("Extracted fr %.2lf -> %d", t, sdindex); } -- 2.7.4