aboutsummaryrefslogtreecommitdiff
path: root/src/Rahm/Desktop/Layout/Pop.hs
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2022-04-16 00:20:03 -0600
committerJosh Rahm <joshuarahm@gmail.com>2022-10-09 12:19:46 -0600
commit1ba923704e7889205f574de1b85f48773ec6aca7 (patch)
tree84b248671ab8918a12bb95a3ca62fb1912b934f2 /src/Rahm/Desktop/Layout/Pop.hs
parent9e5d56cfb2508d9f5e58bf681265d0f1070b3f35 (diff)
downloadrde-1ba923704e7889205f574de1b85f48773ec6aca7.tar.gz
rde-1ba923704e7889205f574de1b85f48773ec6aca7.tar.bz2
rde-1ba923704e7889205f574de1b85f48773ec6aca7.zip
fix some hlint warnings
Diffstat (limited to 'src/Rahm/Desktop/Layout/Pop.hs')
-rw-r--r--src/Rahm/Desktop/Layout/Pop.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Rahm/Desktop/Layout/Pop.hs b/src/Rahm/Desktop/Layout/Pop.hs
index 7e3dbd1..e06ff25 100644
--- a/src/Rahm/Desktop/Layout/Pop.hs
+++ b/src/Rahm/Desktop/Layout/Pop.hs
@@ -37,7 +37,7 @@ data PopMessage where
deriving (Message)
resizePop :: Float -> PopMessage
-resizePop f = PopMessage $ \(Poppable b x y l) ->
+resizePop f = PopMessage $ \(Poppable b x y l) ->
Poppable b (g $ x + f) (g $ y + f) l
where
g = max 0 . min 0.45
@@ -52,7 +52,7 @@ poppable :: l a -> Poppable l a
poppable = Poppable False 0.05 0.05
instance (LayoutClass l a, Eq a) => LayoutClass (Poppable l) a where
-
+
-- If the current layout is not popped, then just return what the underlying
-- layout returned.