瀏覽代碼

Fix X11 Editor Boot Splash

masoud bh 10 年之前
父節點
當前提交
3c466afb68
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      platform/x11/os_x11.cpp

+ 6 - 0
platform/x11/os_x11.cpp

@@ -892,7 +892,13 @@ void OS_X11::set_window_maximized(bool p_enabled) {
 
 	XSendEvent(x11_display, DefaultRootWindow(x11_display), False, SubstructureRedirectMask | SubstructureNotifyMask, &xev);
 
+	XWindowAttributes xwa;
+	XGetWindowAttributes(x11_display,DefaultRootWindow(x11_display),&xwa);
+	current_videomode.width = xwa.width;
+	current_videomode.height = xwa.height;
+
 	maximized = p_enabled;
+	visual_server->init();
 }
 
 bool OS_X11::is_window_maximized() const {