Browse Source

[X11] Fix decoration reset when returning from fullscreen mode.

bruvzg 3 years ago
parent
commit
4fcc35bdfa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      platform/linuxbsd/display_server_x11.cpp

+ 1 - 1
platform/linuxbsd/display_server_x11.cpp

@@ -1835,7 +1835,7 @@ void DisplayServerX11::_set_wm_fullscreen(WindowID p_window, bool p_enabled) {
 		Hints hints;
 		Atom property;
 		hints.flags = 2;
-		hints.decorations = window_get_flag(WINDOW_FLAG_BORDERLESS, p_window) ? 0 : 1;
+		hints.decorations = wd.borderless ? 0 : 1;
 		property = XInternAtom(x11_display, "_MOTIF_WM_HINTS", True);
 		if (property != None) {
 			XChangeProperty(x11_display, wd.x11_window, property, property, 32, PropModeReplace, (unsigned char *)&hints, 5);