mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-19 10:26:54 +01:00
Fix X11 is_window_maximized
This commit is contained in:
parent
8b9333a67c
commit
36def404b2
@ -1749,8 +1749,15 @@ bool OS_X11::window_maximize_check(const char *p_atom_name) const {
|
|||||||
|
|
||||||
if (result == Success) {
|
if (result == Success) {
|
||||||
Atom *atoms = (Atom *)data;
|
Atom *atoms = (Atom *)data;
|
||||||
Atom wm_act_max_horz = XInternAtom(x11_display, "_NET_WM_ACTION_MAXIMIZE_HORZ", False);
|
Atom wm_act_max_horz;
|
||||||
Atom wm_act_max_vert = XInternAtom(x11_display, "_NET_WM_ACTION_MAXIMIZE_VERT", False);
|
Atom wm_act_max_vert;
|
||||||
|
if (strcmp(p_atom_name, "_NET_WM_STATE") == 0) {
|
||||||
|
wm_act_max_horz = XInternAtom(x11_display, "_NET_WM_STATE_MAXIMIZED_HORZ", False);
|
||||||
|
wm_act_max_vert = XInternAtom(x11_display, "_NET_WM_STATE_MAXIMIZED_VERT", False);
|
||||||
|
} else {
|
||||||
|
wm_act_max_horz = XInternAtom(x11_display, "_NET_WM_ACTION_MAXIMIZE_HORZ", False);
|
||||||
|
wm_act_max_vert = XInternAtom(x11_display, "_NET_WM_ACTION_MAXIMIZE_VERT", False);
|
||||||
|
}
|
||||||
bool found_wm_act_max_horz = false;
|
bool found_wm_act_max_horz = false;
|
||||||
bool found_wm_act_max_vert = false;
|
bool found_wm_act_max_vert = false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user