Bugfix: _only_ stop child, if hide_on_modifier is set (thx cradle)

This commit is contained in:
Axel Wagner 2011-02-04 10:04:54 +01:00
parent ff925f58e8
commit 972be13dc5
1 changed files with 3 additions and 1 deletions

View File

@ -143,7 +143,9 @@ void start_child(char *command) {
/* If hide-on-modifier is set, we start of by sending the
* child a SIGSTOP, because the bars aren't mapped at start */
stop_child();
if (config.hide_on_modifier) {
stop_child();
}
break;
}