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:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_nla.py')
-rw-r--r--release/scripts/startup/bl_ui/space_nla.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_nla.py b/release/scripts/startup/bl_ui/space_nla.py
index 4ecc4e7fdd9..d472352084c 100644
--- a/release/scripts/startup/bl_ui/space_nla.py
+++ b/release/scripts/startup/bl_ui/space_nla.py
@@ -241,10 +241,10 @@ class NLA_MT_snap_pie(Menu):
layout = self.layout
pie = layout.menu_pie()
- pie.operator("nla.snap", text="Current Frame").type = 'CFRA'
- pie.operator("nla.snap", text="Nearest Frame").type = 'NEAREST_FRAME'
- pie.operator("nla.snap", text="Nearest Second").type = 'NEAREST_SECOND'
- pie.operator("nla.snap", text="Nearest Marker").type = 'NEAREST_MARKER'
+ pie.operator("nla.snap", text="Selection to Current Frame").type = 'CFRA'
+ pie.operator("nla.snap", text="Selection to Nearest Frame").type = 'NEAREST_FRAME'
+ pie.operator("nla.snap", text="Selection to Nearest Second").type = 'NEAREST_SECOND'
+ pie.operator("nla.snap", text="Selection to Nearest Marker").type = 'NEAREST_MARKER'
class NLA_MT_context_menu(Menu):