Bugfix: _only_ stop child, if hide_on_modifier is set (thx cradle)
This commit is contained in:
parent
4a10a2edba
commit
29d03f917b
|
@ -143,7 +143,9 @@ void start_child(char *command) {
|
||||||
|
|
||||||
/* If hide-on-modifier is set, we start of by sending the
|
/* If hide-on-modifier is set, we start of by sending the
|
||||||
* child a SIGSTOP, because the bars aren't mapped at start */
|
* child a SIGSTOP, because the bars aren't mapped at start */
|
||||||
stop_child();
|
if (config.hide_on_modifier) {
|
||||||
|
stop_child();
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue