WM: remove X11 hard coded window size workaround

Causes issues with Wayland and is no longer required for Gnome/KDE.
This commit is contained in:
Christian Rauch 2020-05-01 18:38:04 +10:00 committed by Campbell Barton
parent aff5e18adb
commit d602af73d3
2 changed files with 0 additions and 20 deletions

View File

@ -769,19 +769,6 @@ void wm_window_ghostwindows_ensure(wmWindowManager *wm)
* in practice the window manager will likely move to the correct monitor */
wm_init_state.start_x = 0;
wm_init_state.start_y = 0;
#ifdef WITH_X11 /* X11 */
/* X11, don't start maximized because we can't figure out the dimensions
* of a single display yet if there are multiple, due to lack of Xinerama
* handling in GHOST. */
wm_init_state.size_x = min_ii(wm_init_state.size_x, WM_WIN_INIT_SIZE_X);
wm_init_state.size_y = min_ii(wm_init_state.size_y, WM_WIN_INIT_SIZE_Y);
/* pad */
wm_init_state.start_x = WM_WIN_INIT_PAD;
wm_init_state.start_y = WM_WIN_INIT_PAD;
wm_init_state.size_x -= WM_WIN_INIT_PAD * 2;
wm_init_state.size_y -= WM_WIN_INIT_PAD * 2;
#endif
}
LISTBASE_FOREACH (wmWindow *, win, &wm->windows) {

View File

@ -82,11 +82,4 @@ int wm_window_new_main_exec(bContext *C, struct wmOperator *op);
void wm_test_autorun_warning(bContext *C);
/* Initial (unmaximized) size to start with for
* systems that can't find it for themselves (X11).
* Clamped by real desktop limits */
#define WM_WIN_INIT_SIZE_X 1800
#define WM_WIN_INIT_SIZE_Y 1000
#define WM_WIN_INIT_PAD 40
#endif /* __WM_WINDOW_H__ */