[Bf-blender-cvs] [643720f8abd] master: UI: Do Not Resize Already-Open Temporary Windows

Jesse Y noreply at git.blender.org
Mon Jun 28 20:45:38 CEST 2021


Commit: 643720f8abdb4af63d958300f7af10ca4fbaf4f6
Author: Jesse Y
Date:   Mon Jun 28 11:43:45 2021 -0700
Branches: master
https://developer.blender.org/rB643720f8abdb4af63d958300f7af10ca4fbaf4f6

UI: Do Not Resize Already-Open Temporary Windows

There is no longer a need to resize windows that are _already_ open,
since temporary windows can no longer take over the space used by other
already-open temporary windows. This primarily affects Preferences and
Render windows.

see D11721 for more details.

Differential Revision: https://developer.blender.org/D11721

Reviewed by Julian Eisel

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

M	source/blender/windowmanager/intern/wm_window.c

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

diff --git a/source/blender/windowmanager/intern/wm_window.c b/source/blender/windowmanager/intern/wm_window.c
index 1c745ba4c79..8f8577e2616 100644
--- a/source/blender/windowmanager/intern/wm_window.c
+++ b/source/blender/windowmanager/intern/wm_window.c
@@ -827,14 +827,13 @@ wmWindow *WM_window_open(bContext *C,
     win = wm_window_new(bmain, wm, toplevel ? NULL : win_prev, dialog);
     win->posx = rect.xmin;
     win->posy = rect.ymin;
+    win->sizex = BLI_rcti_size_x(&rect);
+    win->sizey = BLI_rcti_size_y(&rect);
     *win->stereo3d_format = *win_prev->stereo3d_format;
   }
 
   bScreen *screen = WM_window_get_active_screen(win);
 
-  win->sizex = BLI_rcti_size_x(&rect);
-  win->sizey = BLI_rcti_size_y(&rect);
-
   if (WM_window_get_active_workspace(win) == NULL) {
     WorkSpace *workspace = WM_window_get_active_workspace(win_prev);
     BKE_workspace_active_set(win->workspace_hook, workspace);



More information about the Bf-blender-cvs mailing list