diff options
| author | Josh Rahm <joshuarahm@gmail.com> | 2022-01-11 20:43:07 -0700 |
|---|---|---|
| committer | Josh Rahm <joshuarahm@gmail.com> | 2022-01-11 20:43:25 -0700 |
| commit | e45c6c02ab92c3b4d4d8303ebfb11db513c29ece (patch) | |
| tree | d747a9998ca66217b066d4ff3d771e601dafcbb1 /src | |
| parent | a0cce47b957501e61c27eea247a48d6eccbd5559 (diff) | |
| download | rde-e45c6c02ab92c3b4d4d8303ebfb11db513c29ece.tar.gz rde-e45c6c02ab92c3b4d4d8303ebfb11db513c29ece.tar.bz2 rde-e45c6c02ab92c3b4d4d8303ebfb11db513c29ece.zip | |
Fix so that <S--> shrinks the alt window, not expand it
Diffstat (limited to 'src')
| -rw-r--r-- | src/Internal/Keys.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Internal/Keys.hs b/src/Internal/Keys.hs index 51a1453..3189ddb 100644 --- a/src/Internal/Keys.hs +++ b/src/Internal/Keys.hs @@ -171,7 +171,7 @@ keymap = runKeys $ do bind xK_minus $ do justMod $ sendMessage (IncMasterN (-1)) - shiftMod $ withFocused $ sendMessage . expandWindowAlt + shiftMod $ withFocused $ sendMessage . shrinkWindowAlt bind xK_m $ do justMod $ subkeys $ |