[Bf-blender-cvs] [0207d20cd4d] master: fix T59951: View all sequences does not take into account region overlap fix centering preview

Richard Antalik noreply at git.blender.org
Sat Feb 23 15:18:24 CET 2019


Commit: 0207d20cd4d400381db3788499bbcc5eb946463a
Author: Richard Antalik
Date:   Sat Feb 23 06:16:52 2019 -0800
Branches: master
https://developer.blender.org/rB0207d20cd4d400381db3788499bbcc5eb946463a

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

===================================================================

M	source/blender/editors/screen/area.c

===================================================================

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;
 			}



More information about the Bf-blender-cvs mailing list