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:
authorRichard Antalik <richardantalik@gmail.com>2019-02-23 17:16:52 +0300
committerRichard Antalik <richardantalik@gmail.com>2019-02-23 17:16:52 +0300
commit0207d20cd4d400381db3788499bbcc5eb946463a (patch)
tree72bac155ab45c85b4ac2b6c6dff8d2161b9cbcde /source/blender/editors/screen
parent6bcdcc96c2548e0ee5e18acc37915aedee6329e0 (diff)
fix T59951: View all sequences does not take into account region overlap
fix centering preview Reviewed by: Brecht Differential revision: https://developer.blender.org/D4388
Diffstat (limited to 'source/blender/editors/screen')
-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 b5c7a19b9af..27b97776503 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -1105,7 +1105,7 @@ bool ED_region_is_overlap(int spacetype, int regiontype)
return true;
}
}
- else if (ELEM(spacetype, SPACE_VIEW3D, SPACE_SEQ, SPACE_IMAGE)) {
+ else if (ELEM(spacetype, SPACE_VIEW3D, SPACE_IMAGE)) {
if (ELEM(regiontype, RGN_TYPE_TOOLS, RGN_TYPE_UI, RGN_TYPE_TOOL_PROPS)) {
return true;
}