remove empty seats

This commit is contained in:
madblobfish 2018-11-01 09:28:02 +01:00
parent afd66d63cc
commit 6e85e7ec89
5 changed files with 19 additions and 0 deletions

View file

@ -53,6 +53,8 @@ struct sway_seat *input_manager_get_seat(const char *seat_name, bool create);
*/
void input_manager_verify_fallback_seat(void);
void input_manager_seat_consider_destroy(const char *seat_name);
/**
* Gets the last seat the user interacted with
*/

View file

@ -94,6 +94,8 @@ struct sway_seat *seat_create(const char *seat_name);
void seat_destroy(struct sway_seat *seat);
void seat_consider_destroy(struct sway_seat *seat);
void seat_add_device(struct sway_seat *seat,
struct sway_input_device *device);