Skip to content

Commit

Permalink
input/input-manager: drop input_manager_configure_all_inputs
Browse files Browse the repository at this point in the history
This is now unused.
  • Loading branch information
emersion authored and kennylevinsen committed Nov 16, 2023
1 parent 7036769 commit 5c99b98
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
2 changes: 0 additions & 2 deletions include/sway/input/input-manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
7 changes: 0 additions & 7 deletions sway/input/input-manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 5c99b98

Please sign in to comment.