summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar David Eklov <david.eklov@gmail.com>2016-07-11 22:51:50 -0500
committerLibravatar David Eklov <david.eklov@gmail.com>2016-07-15 19:14:31 -0500
commit250ddc66c672f62a3c7f44db73b5c4d0661093ba (patch)
treea1821de987be001f015e1ad0240765bdafe12130 /include
parentFix warning from unused daemon return value (diff)
downloadsway-250ddc66c672f62a3c7f44db73b5c4d0661093ba.tar.gz
sway-250ddc66c672f62a3c7f44db73b5c4d0661093ba.tar.zst
sway-250ddc66c672f62a3c7f44db73b5c4d0661093ba.zip
Rename pointer_input::notify to indicate that is called on button clicks
Diffstat (limited to 'include')
-rw-r--r--include/client/window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/client/window.h b/include/client/window.h
index 55a12225..98d19a2b 100644
--- a/include/client/window.h
+++ b/include/client/window.h
@@ -31,7 +31,7 @@ struct pointer_input {
31 int last_x; 31 int last_x;
32 int last_y; 32 int last_y;
33 33
34 void (*notify)(struct window *window, int x, int y, uint32_t button); 34 void (*notify_button)(struct window *window, int x, int y, uint32_t button);
35}; 35};
36 36
37struct window { 37struct window {