aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-10-18 15:18:41 +0200
committerLibravatar GitHub <noreply@github.com>2018-10-18 15:18:41 +0200
commitd88b7a63f487587d9507164de31d6e8508b32801 (patch)
treedbf14c684b7802c2f2876fc8b11636bec26abc3d /include
parentMerge pull request #2868 from emersion/xcursor-env (diff)
parentRemove cursor warping from seat_set_focus (diff)
downloadsway-d88b7a63f487587d9507164de31d6e8508b32801.tar.gz
sway-d88b7a63f487587d9507164de31d6e8508b32801.tar.zst
sway-d88b7a63f487587d9507164de31d6e8508b32801.zip
Merge pull request #2871 from RyanDwyer/untangle-cursor-warp
Remove cursor warping from seat_set_focus
Diffstat (limited to 'include')
-rw-r--r--include/sway/input/seat.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index be95567e..b3b98e8d 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -52,6 +52,7 @@ struct sway_seat {
52 bool has_focus; 52 bool has_focus;
53 struct wl_list focus_stack; // list of containers in focus order 53 struct wl_list focus_stack; // list of containers in focus order
54 struct sway_workspace *workspace; 54 struct sway_workspace *workspace;
55 struct sway_node *prev_focus;
55 56
56 // If the focused layer is set, views cannot receive keyboard focus 57 // If the focused layer is set, views cannot receive keyboard focus
57 struct wlr_layer_surface_v1 *focused_layer; 58 struct wlr_layer_surface_v1 *focused_layer;
@@ -121,9 +122,6 @@ void seat_set_focus_workspace(struct sway_seat *seat,
121 */ 122 */
122void seat_set_raw_focus(struct sway_seat *seat, struct sway_node *node); 123void seat_set_raw_focus(struct sway_seat *seat, struct sway_node *node);
123 124
124void seat_set_focus_warp(struct sway_seat *seat,
125 struct sway_node *node, bool warp);
126
127void seat_set_focus_surface(struct sway_seat *seat, 125void seat_set_focus_surface(struct sway_seat *seat,
128 struct wlr_surface *surface, bool unfocus); 126 struct wlr_surface *surface, bool unfocus);
129 127