diff options
author | emersion <contact@emersion.fr> | 2018-01-22 01:16:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-22 01:16:23 +0100 |
commit | 0c58673c6a108ba241419a0f1d5fecd47f22370e (patch) | |
tree | c3e19af6dd70f04fc5c617e932b4afcc7a1b41d9 /include/sway/input/input-manager.h | |
parent | a6bc46eea9d7dec6a2b93f85bac2e3737e0c6725 (diff) | |
parent | beb3805cf0300bc2640290233aa763d757c12466 (diff) |
Merge pull request #1574 from acrisci/config-refactor
Command criteria
Diffstat (limited to 'include/sway/input/input-manager.h')
-rw-r--r-- | include/sway/input/input-manager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sway/input/input-manager.h b/include/sway/input/input-manager.h index 53064eed..2bf297ce 100644 --- a/include/sway/input/input-manager.h +++ b/include/sway/input/input-manager.h @@ -5,9 +5,6 @@ #include "sway/config.h" #include "list.h" -extern struct input_config *current_input_config; -extern struct seat_config *current_seat_config; - /** * The global singleton input manager * TODO: make me not a global @@ -46,4 +43,7 @@ void sway_input_manager_apply_input_config(struct sway_input_manager *input, void sway_input_manager_apply_seat_config(struct sway_input_manager *input, struct seat_config *seat_config); +struct sway_seat *sway_input_manager_get_default_seat( + struct sway_input_manager *input); + #endif |