diff options
Diffstat (limited to 'XMonad/Actions')
-rw-r--r-- | XMonad/Actions/Plane.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Actions/Plane.hs b/XMonad/Actions/Plane.hs index 8126d41..3037719 100644 --- a/XMonad/Actions/Plane.hs +++ b/XMonad/Actions/Plane.hs @@ -110,7 +110,7 @@ plane :: (WorkspaceId -> WindowSet -> WindowSet) -> Lines -> Limits -> Direction -> X () plane function numberLines_ limits direction = do - state <- get + st <- get xconf <- ask numberLines <- @@ -205,7 +205,7 @@ plane function numberLines_ limits direction = do preColumns = div areas numberLines mCurrentWS :: Maybe Int - mCurrentWS = elemIndex (currentTag $ windowset state) areaNames + mCurrentWS = elemIndex (currentTag $ windowset st) areaNames areas :: Int areas = length areaNames |