diff options
| author | ProsperousPotato <ProsperousPotato@users.noreply.github.com> | 2025-12-13 15:00:39 +0000 |
|---|---|---|
| committer | ProsperousPotato <ProsperousPotato@users.noreply.github.com> | 2025-12-13 15:00:39 +0000 |
| commit | 91a8a5e19006d6b6a2dbf86552072a9fba333a0a (patch) | |
| tree | 66522eace36dbb28e7704e61bcd904931425bad4 /config.h | |
| parent | 603ab07e17117fb06074c39c0fe2511d4a41c0ec (diff) | |
fix mouse wheel direction
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -183,10 +183,10 @@ static const Button buttons[] = { { ClkClientWin, MODKEY, Button3, resizemouse, {0} }, /* Focus windows with scroll wheel */ - { ClkClientWin, MODKEY, Button4, focusstack, {.i = +1 } }, - { ClkClientWin, MODKEY, Button5, focusstack, {.i = -1 } }, - { ClkRootWin, MODKEY, Button4, focusstack, {.i = +1 } }, - { ClkRootWin, MODKEY, Button5, focusstack, {.i = -1 } }, + { ClkClientWin, MODKEY, Button4, focusstack, {.i = -1 } }, + { ClkClientWin, MODKEY, Button5, focusstack, {.i = +1 } }, + { ClkRootWin, MODKEY, Button4, focusstack, {.i = -1 } }, + { ClkRootWin, MODKEY, Button5, focusstack, {.i = +1 } }, /* Focus monitors with side mouse buttons */ { ClkClientWin, MODKEY, Button8, focusmon, {.i = -1 } }, |
