From 3f46071ff4602ac8f9ca49b1ae8c368706137ce2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Thu, 22 Jan 2004 18:10:52 +0000 Subject: [PATCH] The mysterious window type Override strikes back, this time breaking stacking order for Qt-3.2.x fullscreen windows not patched to use NETWM fullscreens. Tested by Laurent Montel. svn path=/trunk/kdebase/kwin/; revision=281817 --- client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.cpp b/client.cpp index f77a272beb..667e215656 100644 --- a/client.cpp +++ b/client.cpp @@ -1518,7 +1518,7 @@ bool Client::isNormalWindow() const bool Client::isSpecialWindow() const { return isDesktop() || isDock() || isSplash() || isTopMenu() - || isOverride() // SELI is NET::Override special or not? + || ( isOverride() && !isFullScreen())// SELI is NET::Override special or not? || isToolbar(); // TODO }