Merge pull request #29671 from bruvzg/x11_borderless_fullscreen_fix
Fix borderless state restoration after exiting fullscreen.
This commit is contained in:
commit
926f2f9d53
|
@ -1017,12 +1017,12 @@ void OS_X11::set_wm_fullscreen(bool p_enabled) {
|
||||||
XFree(xsh);
|
XFree(xsh);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!p_enabled && !get_borderless_window()) {
|
if (!p_enabled) {
|
||||||
// put decorations back if the window wasn't suppoesed to be borderless
|
// put back or remove decorations according to the last set borderless state
|
||||||
Hints hints;
|
Hints hints;
|
||||||
Atom property;
|
Atom property;
|
||||||
hints.flags = 2;
|
hints.flags = 2;
|
||||||
hints.decorations = 1;
|
hints.decorations = current_videomode.borderless_window ? 0 : 1;
|
||||||
property = XInternAtom(x11_display, "_MOTIF_WM_HINTS", True);
|
property = XInternAtom(x11_display, "_MOTIF_WM_HINTS", True);
|
||||||
XChangeProperty(x11_display, x11_window, property, property, 32, PropModeReplace, (unsigned char *)&hints, 5);
|
XChangeProperty(x11_display, x11_window, property, property, 32, PropModeReplace, (unsigned char *)&hints, 5);
|
||||||
}
|
}
|
||||||
|
@ -1531,7 +1531,7 @@ bool OS_X11::is_window_always_on_top() const {
|
||||||
|
|
||||||
void OS_X11::set_borderless_window(bool p_borderless) {
|
void OS_X11::set_borderless_window(bool p_borderless) {
|
||||||
|
|
||||||
if (current_videomode.borderless_window == p_borderless)
|
if (get_borderless_window() == p_borderless)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (!p_borderless && layered_window)
|
if (!p_borderless && layered_window)
|
||||||
|
@ -1551,7 +1551,24 @@ void OS_X11::set_borderless_window(bool p_borderless) {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool OS_X11::get_borderless_window() {
|
bool OS_X11::get_borderless_window() {
|
||||||
return current_videomode.borderless_window;
|
|
||||||
|
bool borderless = current_videomode.borderless_window;
|
||||||
|
Atom prop = XInternAtom(x11_display, "_MOTIF_WM_HINTS", True);
|
||||||
|
if (prop != None) {
|
||||||
|
|
||||||
|
Atom type;
|
||||||
|
int format;
|
||||||
|
unsigned long len;
|
||||||
|
unsigned long remaining;
|
||||||
|
unsigned char *data = NULL;
|
||||||
|
if (XGetWindowProperty(x11_display, x11_window, prop, 0, sizeof(Hints), False, AnyPropertyType, &type, &format, &len, &remaining, &data) == Success) {
|
||||||
|
if (data && (format == 32) && (len >= 5)) {
|
||||||
|
borderless = !((Hints *)data)->decorations;
|
||||||
|
}
|
||||||
|
XFree(data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return borderless;
|
||||||
}
|
}
|
||||||
|
|
||||||
void OS_X11::request_attention() {
|
void OS_X11::request_attention() {
|
||||||
|
|
Loading…
Reference in New Issue