summaryrefslogtreecommitdiffstats
path: root/include/client/window.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-07-14 18:57:37 -0400
committerLibravatar GitHub <noreply@github.com>2016-07-14 18:57:37 -0400
commit6abbe04e7590f3bfba13351eb87ada70ac3d506e (patch)
treef7c64d6e9d082bd080960c42e21e54edf01839de /include/client/window.h
parentMerge pull request #726 from Hummer12007/hwc (diff)
parentSend command to sway to change workspace when workspace button is clicked (diff)
downloadsway-6abbe04e7590f3bfba13351eb87ada70ac3d506e.tar.gz
sway-6abbe04e7590f3bfba13351eb87ada70ac3d506e.tar.zst
sway-6abbe04e7590f3bfba13351eb87ada70ac3d506e.zip
Merge pull request #743 from deklov/panel-as-shell-03
Set panels/backgrounds' geometries correctly and don't render them ex…
Diffstat (limited to 'include/client/window.h')
-rw-r--r--include/client/window.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/client/window.h b/include/client/window.h
index 7be4fff3..55a12225 100644
--- a/include/client/window.h
+++ b/include/client/window.h
@@ -28,10 +28,10 @@ struct cursor {
28}; 28};
29 29
30struct pointer_input { 30struct pointer_input {
31 wl_fixed_t last_x; 31 int last_x;
32 wl_fixed_t last_y; 32 int last_y;
33 33
34 void (*notify)(struct window *window, wl_fixed_t x, wl_fixed_t y, uint32_t button); 34 void (*notify)(struct window *window, int x, int y, uint32_t button);
35}; 35};
36 36
37struct window { 37struct window {