diff options
| -rw-r--r-- | src/Xmobar.hs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/Xmobar.hs b/src/Xmobar.hs index 25d8fab..74c4b4d 100644 --- a/src/Xmobar.hs +++ b/src/Xmobar.hs @@ -259,7 +259,7 @@ updateActions conf (Rectangle _ _ wid _) ~[left,center,right] = do                                 R -> remWidth xs                                 L -> offs -  fmap concat $ mapM (\(a,xs) -> strLn xs >>= \xs' -> return $ partCoord (offset a xs') xs') $ +  fmap concat $ mapM (\(a,xs) -> fmap (\xs' -> partCoord (offset a xs') xs') $ strLn xs) $                  zip [L,C,R] [left,center,right]  -- $print | 
