From 4aade63604e9d29f01933b9bf0ac9228721411ef Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 14 Oct 2011 19:24:45 -0400 Subject: Allow per-app settings to pick a monitor for a window without choosing a position in it. --- openbox/config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'openbox/config.c') diff --git a/openbox/config.c b/openbox/config.c index 857255fa..9067011a 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -291,8 +291,8 @@ static void parse_per_app_settings(xmlNodePtr node, gpointer d) settings->pos_given = TRUE; } - if (settings->pos_given && - (c = obt_xml_find_node(n->children, "monitor"))) + /* monitor can be set without setting x or y */ + if ((c = obt_xml_find_node(n->children, "monitor"))) if (!obt_xml_node_contains(c, "default")) { gchar *s = obt_xml_node_string(c); if (!g_ascii_strcasecmp(s, "mouse")) -- cgit v1.2.3