1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 06:54:45 +03:00

x11: fix INTEGRATED_BUTTONS|RESIZE

Shouldn't show the native titlebar in that case
This commit is contained in:
Wez Furlong 2023-04-01 07:26:14 -07:00
parent ed67d0449a
commit b74da54a70
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387

View File

@ -953,6 +953,7 @@ impl XWindowInner {
FUNC_ALL FUNC_ALL
} else if decorations == WindowDecorations::RESIZE } else if decorations == WindowDecorations::RESIZE
|| decorations == WindowDecorations::INTEGRATED_BUTTONS || decorations == WindowDecorations::INTEGRATED_BUTTONS
|| decorations == WindowDecorations::INTEGRATED_BUTTONS|WindowDecorations::RESIZE
{ {
FUNC_RESIZE FUNC_RESIZE
} else if decorations == WindowDecorations::TITLE { } else if decorations == WindowDecorations::TITLE {