diff --git a/layers.cpp b/layers.cpp index 83e69540a2..8890c93b38 100644 --- a/layers.cpp +++ b/layers.cpp @@ -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. diff --git a/utils.h b/utils.h index 34b5592d6f..6aeddc4f0a 100644 --- a/utils.h +++ b/utils.h @@ -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 };