From b74da54a705769d12ab1460cd3c1a27315a351a3 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sat, 1 Apr 2023 07:26:14 -0700 Subject: [PATCH] x11: fix INTEGRATED_BUTTONS|RESIZE Shouldn't show the native titlebar in that case --- window/src/os/x11/window.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/window/src/os/x11/window.rs b/window/src/os/x11/window.rs index 88f1f13ba..3e68f422a 100644 --- a/window/src/os/x11/window.rs +++ b/window/src/os/x11/window.rs @@ -953,6 +953,7 @@ impl XWindowInner { FUNC_ALL } else if decorations == WindowDecorations::RESIZE || decorations == WindowDecorations::INTEGRATED_BUTTONS + || decorations == WindowDecorations::INTEGRATED_BUTTONS|WindowDecorations::RESIZE { FUNC_RESIZE } else if decorations == WindowDecorations::TITLE {