From 3bb6b3e1a501149c2ec24c5cb2773b096e29af41 Mon Sep 17 00:00:00 2001 From: Shivesh Mandalia Date: Wed, 22 Sep 2021 16:46:01 +0100 Subject: Scrollback using mouse wheel only when not in MODE_ALTSCREEN - Patch st-scrollback-mouse-altscreen-20200416-5703aa0.diff --- config.def.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config.def.h') diff --git a/config.def.h b/config.def.h index 51d0236..5071569 100644 --- a/config.def.h +++ b/config.def.h @@ -174,8 +174,8 @@ static uint forcemousemod = ShiftMask; */ static MouseShortcut mshortcuts[] = { /* mask button function argument release */ - { ShiftMask, Button4, kscrollup, {.i = 1} }, - { ShiftMask, Button5, kscrolldown, {.i = 1} }, + { XK_ANY_MOD, Button4, kscrollup, {.i = 1}, 0, /* !alt */ -1 }, + { XK_ANY_MOD, Button5, kscrolldown, {.i = 1}, 0, /* !alt */ -1 }, { XK_ANY_MOD, Button2, selpaste, {.i = 0}, 1 }, { ShiftMask, Button4, ttysend, {.s = "\033[5;2~"} }, { XK_ANY_MOD, Button4, ttysend, {.s = "\031"} }, -- cgit v1.2.3