i3bar: Send mouse wheel events to child too

Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
This commit is contained in:
Quentin Glidic
2014-03-13 13:58:15 +01:00
committed by Michael Stapelberg
parent 0c3735fc23
commit eb7537e53d
3 changed files with 52 additions and 37 deletions
i3bar

@ -624,3 +624,11 @@ void cont_child(void) {
killpg(child.pid, child.cont_signal);
}
}
/*
* Whether or not the child want click events
*
*/
bool child_want_click_events(void) {
return child.click_events;
}