diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-02-07 18:17:57 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-02-07 18:17:57 -0500 |
| commit | 47eedfd38f6f396f66d4a36d3ae392dc7ff07521 (patch) | |
| tree | 83f3d132a16e69deb4dbbdb8b4f8d1cda5964c27 /include | |
| parent | c8ea0378a8a6577b66a27e326e64cdea50e6ad19 (diff) | |
separate seat get focus and seat get focus inactive
Diffstat (limited to 'include')
| -rw-r--r-- | include/sway/input/seat.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h index 8d5d6b75..26a7e5dc 100644 --- a/include/sway/input/seat.h +++ b/include/sway/input/seat.h @@ -56,7 +56,9 @@ void sway_seat_configure_xcursor(struct sway_seat *seat); void sway_seat_set_focus(struct sway_seat *seat, swayc_t *container); -swayc_t *sway_seat_get_focus(struct sway_seat *seat, swayc_t *container); +swayc_t *sway_seat_get_focus(struct sway_seat *seat); + +swayc_t *sway_seat_get_focus_inactive(struct sway_seat *seat, swayc_t *container); void sway_seat_set_config(struct sway_seat *seat, struct seat_config *seat_config); |
