diff options
| author | efe <[email protected]> | 2019-02-08 17:56:26 -0500 |
|---|---|---|
| committer | Quentin Rameau <[email protected]> | 2019-02-09 00:25:39 +0100 |
| commit | d068a3878b6b9f2841a49cd7948cdf9d62b55585 (patch) | |
| tree | 3341c2827f689a662893744474bcff99c3d91963 | |
| parent | Makefile: fix a typo in clean: target (diff) | |
| download | surf-d068a3878b6b9f2841a49cd7948cdf9d62b55585.tar.gz surf-d068a3878b6b9f2841a49cd7948cdf9d62b55585.tar.bz2 surf-d068a3878b6b9f2841a49cd7948cdf9d62b55585.zip | |
Fix vertical scroll directions in the config file
| -rw-r--r-- | config.def.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index 8cdc397..34265f6 100644 --- a/config.def.h +++ b/config.def.h @@ -146,8 +146,8 @@ static Key keys[] = { /* vertical and horizontal scrolling, in viewport percentage */ { MODKEY, GDK_KEY_j, scrollv, { .i = +10 } }, { MODKEY, GDK_KEY_k, scrollv, { .i = -10 } }, - { MODKEY, GDK_KEY_b, scrollv, { .i = +50 } }, - { MODKEY, GDK_KEY_space, scrollv, { .i = -50 } }, + { MODKEY, GDK_KEY_space, scrollv, { .i = +50 } }, + { MODKEY, GDK_KEY_b, scrollv, { .i = -50 } }, { MODKEY, GDK_KEY_i, scrollh, { .i = +10 } }, { MODKEY, GDK_KEY_u, scrollh, { .i = -10 } }, |