Merge pull request #3342 from RedSoxFan/scroll-buttons-improved

Improve mouse button parsing: input scroll_button
This commit is contained in:
Drew DeVault 2019-01-13 20:40:00 -05:00 committed by GitHub
commit db1631b67d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 24 additions and 21 deletions

View file

@ -1227,7 +1227,7 @@ uint32_t get_mouse_bindcode(const char *name, char **error) {
uint32_t get_mouse_button(const char *name, char **error) {
uint32_t button = get_mouse_bindsym(name, error);
if (!button && !error) {
if (!button && !*error) {
button = get_mouse_bindcode(name, error);
}
return button;