don't passthrough a floating_scroll event to focused window

This commit is contained in:
D.B 2016-07-23 16:30:04 +02:00
parent 643bd8f158
commit 80858c1f57
1 changed files with 10 additions and 4 deletions

View File

@ -876,15 +876,21 @@ bool handle_pointer_scroll(wlc_handle view, uint32_t time, const struct wlc_modi
if (!(modifiers->mods ^ config->floating_mod)) {
int x_amount = (int)_amount[0];
int y_amount = (int)_amount[1];
if (x_amount > 0) {
if (x_amount > 0 && strcmp(config->floating_scroll_up_cmd, "")) {
handle_command(config->floating_scroll_up_cmd);
} else if (x_amount < 0) {
return EVENT_HANDLED;
} else if (x_amount < 0 && strcmp(config->floating_scroll_down_cmd, "")) {
handle_command(config->floating_scroll_down_cmd);
return EVENT_HANDLED;
}
if (y_amount > 0) {
if (y_amount > 0 && strcmp(config->floating_scroll_right_cmd, "")) {
handle_command(config->floating_scroll_right_cmd);
} else if (y_amount < 0) {
return EVENT_HANDLED;
} else if (y_amount < 0 && strcmp(config->floating_scroll_left_cmd, "")) {
handle_command(config->floating_scroll_left_cmd);
return EVENT_HANDLED;
}
}
return EVENT_PASSTHROUGH;