Skip to content

Commit

Permalink
Fix input command order (rotation_angle)
Browse files Browse the repository at this point in the history
efd83cb 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.
  • Loading branch information
baltitenger authored and emersion committed Dec 9, 2022
1 parent efd83cb commit fbf9191
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sway/commands/input.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down

0 comments on commit fbf9191

Please sign in to comment.