diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2016-07-16 09:09:22 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2016-07-16 09:09:22 -0400 |
| commit | 4b8e18d60b60f34a59a00befca9c03d6c4ce41fb (patch) | |
| tree | bdd978690510d35a170399ee0d078c6a4ac5f64b /wayland | |
| parent | 20abc2f550f9d3b9cee2c0e9483179bbb00df78f (diff) | |
Fix #753
Diffstat (limited to 'wayland')
| -rw-r--r-- | wayland/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wayland/window.c b/wayland/window.c index dfa6a997..9ebee2ba 100644 --- a/wayland/window.c +++ b/wayland/window.c @@ -42,7 +42,7 @@ static void pointer_handle_button(void *data, struct wl_pointer *pointer, uint32 struct pointer_input *input = &window->pointer_input; if (window->pointer_input.notify_button) { - window->pointer_input.notify_button(window, input->last_x, input->last_y, button); + window->pointer_input.notify_button(window, input->last_x, input->last_y, button, state_w); } } |
