diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2005-03-25 20:17:45 +0000 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2005-03-25 20:17:45 +0000 |
| commit | 498ae4cc20b15c6c264a3fd7458ec2cd8777eb79 (patch) | |
| tree | f419e11852e0dcfd27d8fb3746c54e88ed7f8f2a /openbox | |
| parent | 3cc75f71a2123fe3659a52257a144ffb1444c850 (diff) | |
add noStrut option to dock and fix up rc.xsd, some options were in the wrong section due to hideDelay being in both dock and menu
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/config.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/openbox/config.c b/openbox/config.c index ad1ea8c6..f086a1a3 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -361,6 +361,9 @@ static void parse_dock(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node, config_dock_x = parse_int(doc, n); if ((n = parse_find_node("floatingY", node))) config_dock_y = parse_int(doc, n); + } else { + if ((n = parse_find_node("noStrut", node))) + config_dock_floating = parse_bool(doc, n); } if ((n = parse_find_node("stacking", node))) { if (parse_contains("top", doc, n)) |
