aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/input
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-10-17 15:57:13 +0200
committerLibravatar GitHub <noreply@github.com>2018-10-17 15:57:13 +0200
commit765c80e5f7c36df77e9475a662648a0d87b93606 (patch)
tree21f28277ff5109d9f8ec196a12fc74bbb5dfd994 /include/sway/input
parentMerge pull request #2862 from SpeedJack/fix-stringop-overflow (diff)
parentview: rewarp cursor during view_unmap (diff)
downloadsway-765c80e5f7c36df77e9475a662648a0d87b93606.tar.gz
sway-765c80e5f7c36df77e9475a662648a0d87b93606.tar.zst
sway-765c80e5f7c36df77e9475a662648a0d87b93606.zip
Merge pull request #2820 from Emantor/fix-mouse-warping-container
Fix mouse warping container
Diffstat (limited to 'include/sway/input')
-rw-r--r--include/sway/input/cursor.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/sway/input/cursor.h b/include/sway/input/cursor.h
index 4d47ab42..5556ea11 100644
--- a/include/sway/input/cursor.h
+++ b/include/sway/input/cursor.h
@@ -46,6 +46,11 @@ void dispatch_cursor_button(struct sway_cursor *cursor, uint32_t time_msec,
46 uint32_t button, enum wlr_button_state state); 46 uint32_t button, enum wlr_button_state state);
47 47
48void cursor_set_image(struct sway_cursor *cursor, const char *image, 48void cursor_set_image(struct sway_cursor *cursor, const char *image,
49 struct wl_client *client); 49 struct wl_client *client);
50 50
51void cursor_warp_to_container(struct sway_cursor *cursor,
52 struct sway_container *container);
53
54void cursor_warp_to_workspace(struct sway_cursor *cursor,
55 struct sway_workspace *workspace);
51#endif 56#endif