We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a97723 commit f694c64Copy full SHA for f694c64
platform/linuxbsd/x11/display_server_x11.cpp
@@ -2467,9 +2467,11 @@ void DisplayServerX11::_update_motif_wm_hints(WindowID p_window) {
2467
WindowData &wd = windows[p_window];
2468
2469
MotifWmHints hints = {};
2470
- hints.flags = MWM_HINTS_DECORATIONS | MWM_HINTS_FUNCTIONS;
+ hints.flags = MWM_HINTS_DECORATIONS;
2471
2472
if (!wd.borderless) {
2473
+ hints.flags |= MWM_HINTS_FUNCTIONS;
2474
+
2475
hints.decorations = MWM_DECOR_BORDER | MWM_DECOR_MENU | MWM_DECOR_TITLE;
2476
hints.functions = MWM_FUNC_MOVE | MWM_FUNC_CLOSE;
2477
0 commit comments