diff options
author | Felix M. Cobos <felix.cobos@gmail.com> | 2017-09-10 06:41:34 +0200 |
---|---|---|
committer | Felix M. Cobos <felix.cobos@gmail.com> | 2017-09-12 18:53:34 +0200 |
commit | 2e74bf488b93efa6f0a8431584943ec178abd7db (patch) | |
tree | f1d09cb3f9000e9d1ffc533c6d417bdae7aa9ef2 | |
parent | d1cb73b47a17de830d9474026ffa7b3587cfbc68 (diff) |
Adding borders back to a borderless window was not working.
-rw-r--r-- | platform/x11/os_x11.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/platform/x11/os_x11.cpp b/platform/x11/os_x11.cpp index f96343c92c..767ede8540 100644 --- a/platform/x11/os_x11.cpp +++ b/platform/x11/os_x11.cpp @@ -712,6 +712,16 @@ void OS_X11::set_wm_fullscreen(bool p_enabled) { XSetWMNormalHints(x11_display, x11_window, xsh); XFree(xsh); } + + if (!p_enabled && !get_borderless_window()) { + // put decorations back if the window wasn't suppoesed to be borderless + Hints hints; + Atom property; + hints.flags = 2; + hints.decorations = 1; + property = XInternAtom(x11_display, "_MOTIF_WM_HINTS", True); + XChangeProperty(x11_display, x11_window, property, property, 32, PropModeReplace, (unsigned char *)&hints, 5); + } } int OS_X11::get_screen_count() const { |