diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2006-06-08 11:49:52 +0000 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2006-06-08 11:49:52 +0000 |
| commit | 4a42260849ab284cc6a257c3d0cb74b4633a39de (patch) | |
| tree | 591b11bac58139e7ef2eef853dd80df1b87247a6 /openbox | |
| parent | b4010b586daf1b9c69ecda69a470341cc3c6ab18 (diff) | |
setting variables helps
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/config.c b/openbox/config.c index 6df57241..e117de27 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -148,10 +148,10 @@ static void parse_per_app_settings(ObParseInst *i, xmlDocPtr doc, if (x_pos_given && (c = parse_find_node("y", n->children))) { if (!strcmp(parse_string(doc, c), "center")) { settings->center_y = TRUE; - settings->pos_given; + settings->pos_given = TRUE; } else { settings->position.y = parse_int(doc, c); - settings->pos_given; + settings->pos_given = TRUE; } } } |
