[Bf-blender-cvs] [23b5e10dbd7] master: Fix T78112: VSE Sequencer/Preview crash after fullscreen

Julian Eisel noreply at git.blender.org
Wed Jun 24 15:22:34 CEST 2020


Commit: 23b5e10dbd7b47553504a24afc35aa1f13bb85eb
Author: Julian Eisel
Date:   Wed Jun 24 15:15:22 2020 +0200
Branches: master
https://developer.blender.org/rB23b5e10dbd7b47553504a24afc35aa1f13bb85eb

Fix T78112: VSE Sequencer/Preview crash after fullscreen

The region refresh callback wasn't called, which in the VSE ensures valid
region sizes and removes handlers of invisible regions.

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

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

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

diff --git a/source/blender/editors/screen/screen_edit.c b/source/blender/editors/screen/screen_edit.c
index 6f004238522..b6f210d7f13 100644
--- a/source/blender/editors/screen/screen_edit.c
+++ b/source/blender/editors/screen/screen_edit.c
@@ -1331,6 +1331,7 @@ ScrArea *ED_screen_state_toggle(bContext *C, wmWindow *win, ScrArea *area, const
     oldscreen->animtimer = NULL;
 
     ED_screen_change(C, screen);
+    ED_area_tag_refresh(fullsa);
 
     BKE_workspace_layout_remove(CTX_data_main(C), workspace, layout_old);



More information about the Bf-blender-cvs mailing list