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:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-12-16 15:16:05 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-12-16 15:17:59 +0400
commitcacd7c725b5d5c1961795ddc94b99c3a5aaaa43c (patch)
tree3ea02f89aaa5a7910cbd65fb8f59223896dea42e /source/blender
parent09b4954d2dbd22b14b47cffbb853ce20ebf2f3cc (diff)
Disable region overlap in movie clip editor
Before it was giving weird behavior with timeline in MCE and track preview widgets. But there's also no much benefit of having transparent toolbox there. Requested by our motrack guru Sebastian ages ago.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/screen/area.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c
index f53b26df22c..b963d2a59f5 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -917,7 +917,7 @@ static int region_is_overlap(wmWindow *win, ScrArea *sa, ARegion *ar)
if (ELEM3(ar->regiontype, RGN_TYPE_TOOLS, RGN_TYPE_UI, RGN_TYPE_TOOL_PROPS))
return 1;
}
- else if (ELEM(sa->spacetype, SPACE_IMAGE, SPACE_CLIP)) {
+ else if (sa->spacetype == SPACE_IMAGE) {
if (ELEM4(ar->regiontype, RGN_TYPE_TOOLS, RGN_TYPE_UI, RGN_TYPE_TOOL_PROPS, RGN_TYPE_PREVIEW))
return 1;
}