From dba0c1634e7fa05a14b79a3e2320051477f06438 Mon Sep 17 00:00:00 2001 From: Jakub Date: Thu, 12 Jan 2023 13:40:52 -0500 Subject: [PATCH] remove shift requirement for mouse scrolling --- config.def.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.def.h b/config.def.h index 6977752..a8c807e 100644 --- a/config.def.h +++ b/config.def.h @@ -199,8 +199,8 @@ ResourcePref resources[] = { const unsigned int mousescrollincrement = 1; static MouseShortcut mshortcuts[] = { /* mask button function argument release */ - { ShiftMask, Button4, kscrollup, {.i = mousescrollincrement} }, - { ShiftMask, Button5, kscrolldown, {.i = mousescrollincrement} }, + { 0, Button4, kscrollup, {.i = mousescrollincrement} }, + { 0, Button5, kscrolldown, {.i = mousescrollincrement} }, }; /* Internal keyboard shortcuts. */