summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorProsperousPotato <ProsperousPotato@users.noreply.github.com>2025-12-13 15:00:39 +0000
committerProsperousPotato <ProsperousPotato@users.noreply.github.com>2025-12-13 15:00:39 +0000
commit91a8a5e19006d6b6a2dbf86552072a9fba333a0a (patch)
tree66522eace36dbb28e7704e61bcd904931425bad4 /config.h
parent603ab07e17117fb06074c39c0fe2511d4a41c0ec (diff)
fix mouse wheel direction
Diffstat (limited to 'config.h')
-rw-r--r--config.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.h b/config.h
index 3ed7da2..878626f 100644
--- a/config.h
+++ b/config.h
@@ -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 } },