summaryrefslogtreecommitdiff
path: root/wayland
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2016-07-16 09:09:22 -0400
committerDrew DeVault <[email protected]>2016-07-16 09:09:22 -0400
commit147a88260a74f536e1a1e513f0f8087d02982b00 (patch)
treebdd978690510d35a170399ee0d078c6a4ac5f64b /wayland
parente66f813d49e60728064fa563e01f00f7d99e0a08 (diff)
Fix #753
Diffstat (limited to 'wayland')
-rw-r--r--wayland/window.c2
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);
}
}