[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4808] contrib/py/scripts/addons/ scene_amaranth_toolset.py: Amaranth Addon

Pablo Vazquez venomgfx at gmail.com
Fri Oct 18 11:20:27 CEST 2013


Revision: 4808
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=4808
Author:   venomgfx
Date:     2013-10-18 09:20:27 +0000 (Fri, 18 Oct 2013)
Log Message:
-----------
Amaranth Addon
Frames indicator on timeline: better label while on start frame (show how many are left)

Modified Paths:
--------------
    contrib/py/scripts/addons/scene_amaranth_toolset.py

Modified: contrib/py/scripts/addons/scene_amaranth_toolset.py
===================================================================
--- contrib/py/scripts/addons/scene_amaranth_toolset.py	2013-10-17 13:12:34 UTC (rev 4807)
+++ contrib/py/scripts/addons/scene_amaranth_toolset.py	2013-10-18 09:20:27 UTC (rev 4808)
@@ -264,7 +264,7 @@
         if (scene.frame_current > frame_end):
             row.label(text="%s Frames Ahead" % ((frame_end - scene.frame_current) * -1))
         elif (scene.frame_current == frame_start):
-            row.label(text="%s Start Frame" % scene.frame_current)
+            row.label(text="Start Frame (%s left)" % (frame_end - scene.frame_current))
         elif (scene.frame_current == frame_end):
             row.label(text="%s End Frame" % scene.frame_current)
         else:



More information about the Bf-extensions-cvs mailing list