aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/input/seat.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-16 08:17:24 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-16 08:17:24 +1000
commit05284b65db5f3cdfa88d7e06055aadd0d5fa8e50 (patch)
tree7238c53d8310712a94b6d798ef096bd3ad48f43e /include/sway/input/seat.h
parentIntroduce seat_set_raw_focus and remove notify argument from seat_set_focus_warp (diff)
downloadsway-05284b65db5f3cdfa88d7e06055aadd0d5fa8e50.tar.gz
sway-05284b65db5f3cdfa88d7e06055aadd0d5fa8e50.tar.zst
sway-05284b65db5f3cdfa88d7e06055aadd0d5fa8e50.zip
Prevent duplicate workspace::focus events
Previously we would compare the last focus's workspace with the new focus's workspace to determine if we need to emit an IPC workspace::focus event. This doesn't work when moving the focused container to a new workspace. This adds a workspace property to the seat which stores the last emitted workspace::focus workspace. Using this method, after moving the container, refocusing it will trigger exactly one workspace::focus event: from the old workspace to the new workspace.
Diffstat (limited to 'include/sway/input/seat.h')
-rw-r--r--include/sway/input/seat.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index 921373d4..be95567e 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -51,6 +51,7 @@ struct sway_seat {
51 51
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 55
55 // If the focused layer is set, views cannot receive keyboard focus 56 // If the focused layer is set, views cannot receive keyboard focus
56 struct wlr_layer_surface_v1 *focused_layer; 57 struct wlr_layer_surface_v1 *focused_layer;