mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 21:14:10 +01:00
increase maximum value of button identifier
and also cleanup spaces
This commit is contained in:
parent
41b80c28df
commit
08edaf4e76
@ -19,7 +19,7 @@ struct cmd_results *input_cmd_scroll_button(int argc, char **argv) {
|
|||||||
new_input_config(current_input_config->identifier);
|
new_input_config(current_input_config->identifier);
|
||||||
|
|
||||||
int scroll_button = atoi(argv[0]);
|
int scroll_button = atoi(argv[0]);
|
||||||
if (scroll_button < 1 || scroll_button > 10) {
|
if (scroll_button < 0 || scroll_button > 1000) {
|
||||||
free_input_config(new_config);
|
free_input_config(new_config);
|
||||||
return cmd_results_new(CMD_INVALID, "scroll_button",
|
return cmd_results_new(CMD_INVALID, "scroll_button",
|
||||||
"Input out of range [1, 10]");
|
"Input out of range [1, 10]");
|
||||||
|
@ -27,8 +27,8 @@ struct input_config *new_input_config(const char* identifier) {
|
|||||||
input->natural_scroll = INT_MIN;
|
input->natural_scroll = INT_MIN;
|
||||||
input->accel_profile = INT_MIN;
|
input->accel_profile = INT_MIN;
|
||||||
input->pointer_accel = FLT_MIN;
|
input->pointer_accel = FLT_MIN;
|
||||||
input->scroll_method = INT_MIN;
|
|
||||||
input->scroll_button = INT_MIN;
|
input->scroll_button = INT_MIN;
|
||||||
|
input->scroll_method = INT_MIN;
|
||||||
input->left_handed = INT_MIN;
|
input->left_handed = INT_MIN;
|
||||||
input->repeat_delay = INT_MIN;
|
input->repeat_delay = INT_MIN;
|
||||||
input->repeat_rate = INT_MIN;
|
input->repeat_rate = INT_MIN;
|
||||||
|
Loading…
Reference in New Issue
Block a user