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>2021-10-18 11:28:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-18 11:29:36 +0300
commit746ee29d3638402e2435f47787087b6458f026c7 (patch)
treeb5ab3d412b4752424d77f1a487acdfb9a1a9616c /source/blender/editors/transform/transform_convert_cursor.c
parent4f3f79c38205c35c304b34122a91b4f102ce992e (diff)
Fix T91700: Strips can be transformed in scope display modes
Hide gizmos & prevent transform & selection in scope display.
Diffstat (limited to 'source/blender/editors/transform/transform_convert_cursor.c')
-rw-r--r--source/blender/editors/transform/transform_convert_cursor.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_convert_cursor.c b/source/blender/editors/transform/transform_convert_cursor.c
index 8a4a13eb4db..ed96eba7f6c 100644
--- a/source/blender/editors/transform/transform_convert_cursor.c
+++ b/source/blender/editors/transform/transform_convert_cursor.c
@@ -111,7 +111,9 @@ void recalcData_cursor_image(TransInfo *t)
void createTransCursor_sequencer(TransInfo *t)
{
SpaceSeq *sseq = t->area->spacedata.first;
-
+ if (sseq->mainb != SEQ_DRAW_IMG_IMBUF) {
+ return;
+ }
createTransCursor_2D_impl(t, sseq->cursor);
}