mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 10:23:13 +00:00
input/input-manager: drop input_manager_configure_all_inputs
This is now unused.
This commit is contained in:
parent
7036769bea
commit
5c99b98805
|
@ -45,8 +45,6 @@ void input_manager_configure_xcursor(void);
|
|||
|
||||
void input_manager_apply_input_config(struct input_config *input_config);
|
||||
|
||||
void input_manager_configure_all_inputs(void);
|
||||
|
||||
void input_manager_configure_all_input_mappings(void);
|
||||
|
||||
void input_manager_reset_input(struct sway_input_device *input_device);
|
||||
|
|
|
@ -564,13 +564,6 @@ static void input_manager_configure_input(
|
|||
}
|
||||
}
|
||||
|
||||
void input_manager_configure_all_inputs(void) {
|
||||
struct sway_input_device *input_device = NULL;
|
||||
wl_list_for_each(input_device, &server.input->devices, link) {
|
||||
input_manager_configure_input(input_device);
|
||||
}
|
||||
}
|
||||
|
||||
void input_manager_configure_all_input_mappings(void) {
|
||||
struct sway_input_device *input_device;
|
||||
wl_list_for_each(input_device, &server.input->devices, link) {
|
||||
|
|
Loading…
Reference in a new issue