make HUP reconfigure as in blackbox. make USR1 restart instead

This commit is contained in:
Dana Jansens 2002-07-19 19:04:28 +00:00
parent 256bcbed81
commit 5862475ff2

View file

@ -971,11 +971,11 @@ void Blackbox::process_event(XEvent *e) {
bool Blackbox::handleSignal(int sig) {
switch (sig) {
case SIGHUP:
restart();
reconfigure();
break;
case SIGUSR1:
reconfigure();
restart();
break;
case SIGUSR2: