reverse the zoom controls

This commit is contained in:
randomuser 2023-04-02 12:49:14 -05:00
parent eebb40fc49
commit 562d6ff6a9
1 changed files with 2 additions and 2 deletions

View File

@ -186,8 +186,8 @@ static MouseShortcut mshortcuts[] = {
static Shortcut shortcuts[] = {
/* mask keysym function argument */
{ XK_ANY_MOD, XK_Break, sendbreak, {.i = 0} },
{ MODKEY, XK_h, zoom, {.f = +1} },
{ MODKEY, XK_l, zoom, {.f = -1} },
{ MODKEY, XK_h, zoom, {.f = -1} },
{ MODKEY, XK_l, zoom, {.f = +1} },
{ MODKEY, XK_c, clipcopy, {.i = 0} },
{ MODKEY, XK_v, clippaste, {.i = 0} },
{ MODKEY, XK_k, kscrollup, {.i = -1} },