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>2019-03-12 02:59:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-12 03:05:28 +0300
commit3017d88aec7f3f44ba9db930920ac2a51aef750d (patch)
tree726484eaee7279c0ec6ab45d57b7679f3af2c8fc /release/scripts/startup/bl_ui/space_graph.py
parente6eb7b9ccee134f0f94cae6f817a29adf029a8d4 (diff)
Cleanup: rename specials -> context_menu
In keeping with convention to match code & UI naming. - No user visible changes. - Include 'menu' in the name since context is an overloaded term. - While a few of these are panels, from a user perspective they are still context menus.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_graph.py')
-rw-r--r--release/scripts/startup/bl_ui/space_graph.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_graph.py b/release/scripts/startup/bl_ui/space_graph.py
index 006232ec071..b12cde67599 100644
--- a/release/scripts/startup/bl_ui/space_graph.py
+++ b/release/scripts/startup/bl_ui/space_graph.py
@@ -324,7 +324,7 @@ class GRAPH_MT_delete(Menu):
layout.operator("graph.clean", text="Clean Channels").channels = True
-class GRAPH_MT_specials(Menu):
+class GRAPH_MT_context_menu(Menu):
bl_label = "F-Curve Context Menu"
def draw(self, context):
@@ -379,7 +379,7 @@ class GRAPH_MT_snap_pie(Menu):
pie.operator("graph.snap", text="Flatten Handles").type = 'HORIZONTAL'
-class GRAPH_MT_channel_specials(Menu):
+class GRAPH_MT_channel_context_menu(Menu):
bl_label = "F-Curve Channel Context Menu"
def draw(self, context):
@@ -430,8 +430,8 @@ classes = (
GRAPH_MT_key,
GRAPH_MT_key_transform,
GRAPH_MT_delete,
- GRAPH_MT_specials,
- GRAPH_MT_channel_specials,
+ GRAPH_MT_context_menu,
+ GRAPH_MT_channel_context_menu,
GRAPH_MT_pivot_pie,
GRAPH_MT_snap_pie,
GRAPH_PT_filters,