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 <campbell@blender.org>2022-05-13 09:09:04 +0300
committerCampbell Barton <campbell@blender.org>2022-05-13 09:09:04 +0300
commit113b8030ced92c23e33717dac97287f8792fd1cb (patch)
tree8a4cc192d6d31f3b56d92ba71448a0428225d4e2 /source/blender/editors/space_clip
parent470cbad51a63c56d8114ccfb3bb408b1d9cb4824 (diff)
Fix T89909: Circle Select tool status bar doesn't match the operations
Assign get_name functions for select picking and circle select so modifier keys show the result of holding the modifiers.
Diffstat (limited to 'source/blender/editors/space_clip')
-rw-r--r--source/blender/editors/space_clip/tracking_select.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_clip/tracking_select.c b/source/blender/editors/space_clip/tracking_select.c
index 5f940b817a9..f267d948a53 100644
--- a/source/blender/editors/space_clip/tracking_select.c
+++ b/source/blender/editors/space_clip/tracking_select.c
@@ -835,6 +835,7 @@ void CLIP_OT_select_circle(wmOperatorType *ot)
ot->modal = WM_gesture_circle_modal;
ot->exec = circle_select_exec;
ot->poll = ED_space_clip_tracking_poll;
+ ot->get_name = ED_select_pick_get_name;
/* flags */
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;