Animation: Graph Editor Handle Selection #111143

Merged
Nathan Vegdahl merged 11 commits from nathanvegdahl/blender:select_handles_patch into main 2023-09-21 15:05:37 +02:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 9aa3372069 - Show all commits

View File

@ -2213,17 +2213,17 @@ void GRAPH_OT_select_key_handles(wmOperatorType *ot)
prop_graphkeys_select_key_handles_actions,
GRAPHKEYS_KEYHANDLESSEL_SELECT,
"Left Handle",
"How to affect the selection of the left handle");
"Effect on the left handle");
RNA_def_enum(ot->srna,
"right_handle_action",
prop_graphkeys_select_key_handles_actions,
GRAPHKEYS_KEYHANDLESSEL_SELECT,
"Right Handle",
"How to affect the selection of the right handle");
"Effect on the right handle");
RNA_def_enum(ot->srna,
"key_action",
prop_graphkeys_select_key_handles_actions,
GRAPHKEYS_KEYHANDLESSEL_KEEP,
"Key",
"How to affect the selection of the key itself");
"Effect on the key itself");
}