diff options
| author | Josh Rahm <joshuarahm@gmail.com> | 2022-04-11 23:28:18 -0600 |
|---|---|---|
| committer | Josh Rahm <joshuarahm@gmail.com> | 2022-04-11 23:28:18 -0600 |
| commit | 1521bb8dc5d81e68823802454576901075a5dcca (patch) | |
| tree | d20047603fc6448a66b720d456982bd70286791e /src/Rahm/Desktop/Layout/Layout.hs | |
| parent | 4ec113c501dd0435bce173110ef2f0ba0293c360 (diff) | |
| download | rde-1521bb8dc5d81e68823802454576901075a5dcca.tar.gz rde-1521bb8dc5d81e68823802454576901075a5dcca.tar.bz2 rde-1521bb8dc5d81e68823802454576901075a5dcca.zip | |
Fix bug with Poppable where it was passing the Resize to the underlying layout.
Unfortunately it's a little hacky how this ended up working, but I don't
have a great solution yet.
Diffstat (limited to 'src/Rahm/Desktop/Layout/Layout.hs')
| -rw-r--r-- | src/Rahm/Desktop/Layout/Layout.hs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Rahm/Desktop/Layout/Layout.hs b/src/Rahm/Desktop/Layout/Layout.hs index fd34c33..135b9a0 100644 --- a/src/Rahm/Desktop/Layout/Layout.hs +++ b/src/Rahm/Desktop/Layout/Layout.hs @@ -88,10 +88,11 @@ reinterpretIncMaster :: reinterpretIncMaster = ModifiedLayout ReinterpretMessage mods = - poppable . - ModifiedLayout (Flippable False) . - ModifiedLayout (HFlippable False) . - ModifiedLayout (Rotateable False) + reinterpretResize . + poppable . + ModifiedLayout (Flippable False) . + ModifiedLayout (HFlippable False) . + ModifiedLayout (Rotateable False) data ModifyDescription m l a = ModifyDescription m (l a) |