[Bf-blender-cvs] [14b60c620f7] blender2.8: Fix T55535: N panel in sequencer breaks display of preview.

Brecht Van Lommel noreply at git.blender.org
Thu Nov 22 21:05:34 CET 2018


Commit: 14b60c620f7192df270548335371c064f7afae92
Author: Brecht Van Lommel
Date:   Thu Nov 22 20:59:54 2018 +0100
Branches: blender2.8
https://developer.blender.org/rB14b60c620f7192df270548335371c064f7afae92

Fix T55535: N panel in sequencer breaks display of preview.

This preview region should not have been part of region overlap.

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

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

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

diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c
index 98a59292473..0a69a53e6fa 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -1115,10 +1115,6 @@ bool ED_region_is_overlap(int spacetype, int regiontype)
 				if (regiontype == RGN_TYPE_HEADER)
 					return 1;
 			}
-			else if (spacetype == SPACE_SEQ) {
-				if (regiontype == RGN_TYPE_PREVIEW)
-					return 1;
-			}
 		}
 	}



More information about the Bf-blender-cvs mailing list