add desklock layer to layer enum

SVN revision: 84051
This commit is contained in:
Mike Blumenkrantz 2013-02-18 13:43:10 +00:00
parent cba7f88f2f
commit 41b95796a4
1 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,8 @@ typedef enum
E_COMP_CANVAS_LAYER_BG = -1, // zone bg stuff
E_COMP_CANVAS_LAYER_DESKTOP = 0, // desktop objects: fileman, gadgets, shelves
E_COMP_CANVAS_LAYER_LAYOUT = 100, // should be nothing else on this layer
E_COMP_CANVAS_LAYER_ABOVE = 999,
E_COMP_CANVAS_LAYER_ABOVE = 999, // for popups and stuff
E_COMP_CANVAS_LAYER_DESKLOCK = 9999, // desklock
E_COMP_CANVAS_LAYER_MAX = 32767 // EVAS_LAYER_MAX
} E_Comp_Canvas_Layer;