From eafc20d1dfd0dea52b86fa76cdd5bdf3e7113feb Mon Sep 17 00:00:00 2001 From: falkTX Date: Sun, 26 Nov 2023 12:12:30 +0100 Subject: [PATCH] Fix temporary X11 windows Signed-off-by: falkTX --- .../native/x11/juce_linux_XWindowSystem.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/modules/juce_gui_basics/native/x11/juce_linux_XWindowSystem.cpp b/modules/juce_gui_basics/native/x11/juce_linux_XWindowSystem.cpp index 971803cd42..55e2bf2d44 100644 --- a/modules/juce_gui_basics/native/x11/juce_linux_XWindowSystem.cpp +++ b/modules/juce_gui_basics/native/x11/juce_linux_XWindowSystem.cpp @@ -2804,10 +2804,14 @@ void XWindowSystem::setWindowType (::Window windowH, int styleFlags) const if (atoms.windowType != None) { - auto hint = (styleFlags & ComponentPeer::windowIsTemporary) != 0 - || ((styleFlags & ComponentPeer::windowHasDropShadow) == 0 && Desktop::canUseSemiTransparentWindows()) - ? XWindowSystemUtilities::Atoms::getIfExists (display, "_NET_WM_WINDOW_TYPE_COMBO") - : XWindowSystemUtilities::Atoms::getIfExists (display, "_NET_WM_WINDOW_TYPE_NORMAL"); + Atom hint = None; + + if (styleFlags & ComponentPeer::windowIsTemporary) + hint = XWindowSystemUtilities::Atoms::getIfExists (display, "_NET_WM_WINDOW_TYPE_TOOLTIP"); + else if ((styleFlags & ComponentPeer::windowHasDropShadow) == 0 && Desktop::canUseSemiTransparentWindows()) + hint = XWindowSystemUtilities::Atoms::getIfExists (display, "_NET_WM_WINDOW_TYPE_COMBO"); + else + hint = XWindowSystemUtilities::Atoms::getIfExists (display, "_NET_WM_WINDOW_TYPE_NORMAL"); if (hint != None) xchangeProperty (windowH, atoms.windowType, XA_ATOM, 32, &hint, 1);