diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-12-09 22:22:09 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-12-09 22:22:09 +0100 |
| commit | f664bafbd8040c85b423ec610538a183e194faae (patch) | |
| tree | 1d0fe3285f8f051568fc5298623002d702819c8c | |
| parent | 482cc3e9e4b77e9331a44d70ff09dab20b4c99ef (diff) | |
Fix input command order (rotation_angle)
482cc3e9 added the rotation_angle command but it didn't insert it in
the proper place in the list, so the repeat_delay and repeat_rate
commands became unusable.
| -rw-r--r-- | sway/commands/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/input.c b/sway/commands/input.c index 740124ea..3075b5f4 100644 --- a/sway/commands/input.c +++ b/sway/commands/input.c @@ -23,9 +23,9 @@ static const struct cmd_handler input_handlers[] = { { "middle_emulation", input_cmd_middle_emulation }, { "natural_scroll", input_cmd_natural_scroll }, { "pointer_accel", input_cmd_pointer_accel }, - { "rotation_angle", input_cmd_rotation_angle }, { "repeat_delay", input_cmd_repeat_delay }, { "repeat_rate", input_cmd_repeat_rate }, + { "rotation_angle", input_cmd_rotation_angle }, { "scroll_button", input_cmd_scroll_button }, { "scroll_factor", input_cmd_scroll_factor }, { "scroll_method", input_cmd_scroll_method }, |
