diff options
Diffstat (limited to 'src/Xmobar/Draw/Cairo.hs')
-rw-r--r-- | src/Xmobar/Draw/Cairo.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Xmobar/Draw/Cairo.hs b/src/Xmobar/Draw/Cairo.hs index af48133..833935d 100644 --- a/src/Xmobar/Draw/Cairo.hs +++ b/src/Xmobar/Draw/Cairo.hs @@ -182,7 +182,7 @@ drawSegments dctx surf = do cstart = (dw - cw) / 2.0 (cend, as', bx') <- foldM (drawSegment dctx surf dw) (cstart, as, bx) clyts let rstart' = dw - rw - 1 - rstart = if cw > 0 then max rstart' (cend + 1) else rstart' + rstart = if cend > cstart then max rstart' (cend + 1) else rstart' (_, as'', bx'') <- foldM (drawSegment dctx surf dw) (rstart, as', bx') rlyts drawBoxes dctx surf (reverse bx'') when (C.borderWidth conf > 0) (drawBorder conf dw dh surf) |