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
This commit is contained in:
Luboš Luňák 2004-01-22 18:10:52 +00:00
parent e9206bca9a
commit 3f46071ff4

View file

@ -1518,7 +1518,7 @@ bool Client::isNormalWindow() const
bool Client::isSpecialWindow() const bool Client::isSpecialWindow() const
{ {
return isDesktop() || isDock() || isSplash() || isTopMenu() return isDesktop() || isDock() || isSplash() || isTopMenu()
|| isOverride() // SELI is NET::Override special or not? || ( isOverride() && !isFullScreen())// SELI is NET::Override special or not?
|| isToolbar(); // TODO || isToolbar(); // TODO
} }