summaryrefslogtreecommitdiffstats
path: root/wayland
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-07-16 09:09:22 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2016-07-16 09:09:22 -0400
commit147a88260a74f536e1a1e513f0f8087d02982b00 (patch)
treebdd978690510d35a170399ee0d078c6a4ac5f64b /wayland
parentMerge pull request #752 from deklov/bar-scroll-02 (diff)
downloadsway-147a88260a74f536e1a1e513f0f8087d02982b00.tar.gz
sway-147a88260a74f536e1a1e513f0f8087d02982b00.tar.zst
sway-147a88260a74f536e1a1e513f0f8087d02982b00.zip
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
42 struct pointer_input *input = &window->pointer_input; 42 struct pointer_input *input = &window->pointer_input;
43 43
44 if (window->pointer_input.notify_button) { 44 if (window->pointer_input.notify_button) {
45 window->pointer_input.notify_button(window, input->last_x, input->last_y, button); 45 window->pointer_input.notify_button(window, input->last_x, input->last_y, button, state_w);
46 } 46 }
47} 47}
48 48