Bugfix: If hide-on-modifier is set, stop the child after starting
This commit is contained in:
parent
5f32bfa6d8
commit
cd4b77ab72
|
@ -132,6 +132,10 @@ void start_child(char *command) {
|
||||||
|
|
||||||
dup2(fd[0], STDIN_FILENO);
|
dup2(fd[0], STDIN_FILENO);
|
||||||
|
|
||||||
|
/* 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();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue