diff --git a/scene_amaranth_toolset.py b/scene_amaranth_toolset.py index 3a533caaf619228d01c47be602a722f850f6d113..9c86d2962041059929d7b8c0e3aa8a568d5666a1 100755 --- a/scene_amaranth_toolset.py +++ b/scene_amaranth_toolset.py @@ -264,7 +264,7 @@ def label_timeline_extra_info(self, context): 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: