mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2025-01-18 22:26:12 +01:00
rm constraint for max value of button identifier
updated error message to be more adequate for current contraint
This commit is contained in:
parent
20d6c7c2e4
commit
094edcbea2
1 changed files with 2 additions and 2 deletions
|
@ -19,10 +19,10 @@ 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 < 0 || scroll_button > 1000) {
|
if (scroll_button < 0) {
|
||||||
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]");
|
"Scroll button identifier cannot be negative");
|
||||||
}
|
}
|
||||||
new_config->scroll_button = scroll_button;
|
new_config->scroll_button = scroll_button;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue