Animation: Improve labels on Snap menu in graph editor

Add "Selection to" as prefix for those menu items that move the selected
keyframes to something, for both the Key → Snap menu and the Shift+S pie
menu.

No functional changes.
This commit is contained in:
Sybren A. Stüvel 2020-10-19 14:01:51 +02:00
parent e3c76f7937
commit 477d983c2e
Notes: blender-bot 2023-02-14 00:57:33 +01:00
Referenced by commit 911f9e00d1, Animation: Improve labels on Snap menu in NLA & Dopesheet
1 changed files with 10 additions and 10 deletions

View File

@ -324,11 +324,11 @@ class GRAPH_MT_key_snap(Menu):
def draw(self, _context):
layout = self.layout
layout.operator("graph.snap", text="Current Frame").type = 'CFRA'
layout.operator("graph.snap", text="Cursor Value").type = 'VALUE'
layout.operator("graph.snap", text="Nearest Frame").type = 'NEAREST_FRAME'
layout.operator("graph.snap", text="Nearest Second").type = 'NEAREST_SECOND'
layout.operator("graph.snap", text="Nearest Marker").type = 'NEAREST_MARKER'
layout.operator("graph.snap", text="Selection to Current Frame").type = 'CFRA'
layout.operator("graph.snap", text="Selection to Cursor Value").type = 'VALUE'
layout.operator("graph.snap", text="Selection to Nearest Frame").type = 'NEAREST_FRAME'
layout.operator("graph.snap", text="Selection to Nearest Second").type = 'NEAREST_SECOND'
layout.operator("graph.snap", text="Selection to Nearest Marker").type = 'NEAREST_MARKER'
layout.operator("graph.snap", text="Flatten Handles").type = 'HORIZONTAL'
layout.separator()
layout.operator("graph.frame_jump", text="Cursor to Selection")
@ -399,11 +399,11 @@ class GRAPH_MT_snap_pie(Menu):
layout = self.layout
pie = layout.menu_pie()
pie.operator("graph.snap", text="Current Frame").type = 'CFRA'
pie.operator("graph.snap", text="Cursor Value").type = 'VALUE'
pie.operator("graph.snap", text="Nearest Frame").type = 'NEAREST_FRAME'
pie.operator("graph.snap", text="Nearest Second").type = 'NEAREST_SECOND'
pie.operator("graph.snap", text="Nearest Marker").type = 'NEAREST_MARKER'
pie.operator("graph.snap", text="Selection to Current Frame").type = 'CFRA'
pie.operator("graph.snap", text="Selection to Cursor Value").type = 'VALUE'
pie.operator("graph.snap", text="Selection to Nearest Frame").type = 'NEAREST_FRAME'
pie.operator("graph.snap", text="Selection to Nearest Second").type = 'NEAREST_SECOND'
pie.operator("graph.snap", text="Selection to Nearest Marker").type = 'NEAREST_MARKER'
pie.operator("graph.snap", text="Flatten Handles").type = 'HORIZONTAL'
pie.operator("graph.frame_jump", text="Cursor to Selection")
pie.operator("graph.snap_cursor_value", text="Cursor Value to Selection")