Let's see what happens if keep-above windows will be kept between

panels and normal windows, not above panels.
CCBUG:89813

svn path=/trunk/kdebase/kwin/; revision=356529
This commit is contained in:
Luboš Luňák 2004-10-21 15:26:44 +00:00
parent e4317d8850
commit fe1bea9821
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ License. See the file "COPYING" for the exact licensing terms.
the clients were created.
Every window has one layer assigned in which it is. There are 6 layers,
from bottom : DesktopLayer, BelowLayer, NormalLayer, DockLayer, AboveLayer
from bottom : DesktopLayer, BelowLayer, NormalLayer, AboveLayer, DockLayer
and ActiveLayer (see also NETWM sect.7.10.). The layer a window is in depends
on the window type, and on other things like whether the window is active.

View file

@ -56,8 +56,8 @@ enum Layer
DesktopLayer = FirstLayer,
BelowLayer,
NormalLayer,
DockLayer,
AboveLayer,
DockLayer,
ActiveLayer, // active fullscreen, or active dialog
NumLayers // number of layers, must be last
};