Revert panel to _NET_WM_WINDOW_TYPE_DOCK, implement panel_layer=float (Issue 461).

git-svn-id: http://tint2.googlecode.com/svn/trunk@677 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
google@craigoakes.com
2015-01-31 05:17:54 +00:00
parent 0fa10d83b9
commit 5a789c2d7f
6 changed files with 36 additions and 11 deletions

View File

@@ -280,6 +280,8 @@ void add_entry (char *key, char *value)
panel_layer = BOTTOM_LAYER;
else if (strcmp(value, "top") == 0)
panel_layer = TOP_LAYER;
else if (strcmp(value, "float") == 0)
panel_layer = FLOAT_LAYER;
else
panel_layer = NORMAL_LAYER;
}