Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-01-14 18:17:12 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-01-14 18:17:12 +0400
commit635fba3a660a0a19758683f8cbd3eae9247fe0a7 (patch)
tree8b9c22408fb66469938c35aaa61e5c8893856e2e /release/scripts/startup/bl_ui/space_graph.py
parent9c2a58a811d393079ce75190424f53cef98d31d6 (diff)
replace ANIM_OT_time_toggle operator with generic WM_OT_context_toggle operator
Diffstat (limited to 'release/scripts/startup/bl_ui/space_graph.py')
-rw-r--r--release/scripts/startup/bl_ui/space_graph.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_graph.py b/release/scripts/startup/bl_ui/space_graph.py
index f3108bbd017..d6cd9845053 100644
--- a/release/scripts/startup/bl_ui/space_graph.py
+++ b/release/scripts/startup/bl_ui/space_graph.py
@@ -87,7 +87,8 @@ class GRAPH_MT_view(Menu):
layout.operator("graph.handles_view_toggle", icon='CHECKBOX_DEHLT', text="Show All Handles")
layout.prop(st, "use_only_selected_curves_handles")
layout.prop(st, "use_only_selected_keyframe_handles")
- layout.operator("anim.time_toggle")
+
+ layout.prop(st, "show_seconds")
layout.separator()
layout.operator("anim.previewrange_set")