From 823997f0011b0c948ebd9d3a3b155884a336ed2f Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 30 Mar 2011 11:23:11 -0400 Subject: [PATCH] don't re-run the startup command on reconfigure --- openbox/openbox.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openbox/openbox.c b/openbox/openbox.c index d5ed2b8..c41eea4 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -355,11 +355,11 @@ gint main(gint argc, gchar **argv) } } - reconfigure = FALSE; - ob_set_state(OB_STATE_RUNNING); - if (startup_cmd) run_startup_cmd(); + if (!reconfigure && startup_cmd) run_startup_cmd(); + + reconfigure = FALSE; /* look for parsing errors */ { -- 1.9.1