diff options
author | Andrea Rossato <andrea.rossato@ing.unitn.it> | 2010-02-10 14:52:12 +0100 |
---|---|---|
committer | Andrea Rossato <andrea.rossato@ing.unitn.it> | 2010-02-10 14:52:12 +0100 |
commit | ae96068742055dd6237693a9f7d6c8c7704221bd (patch) | |
tree | 03cae479ae4546d189ca3355c6668d16c3437748 | |
parent | 5d8f8d2014fd164ca73ec2c43daa9276352dc63b (diff) | |
download | xmobar-ae96068742055dd6237693a9f7d6c8c7704221bd.tar.gz xmobar-ae96068742055dd6237693a9f7d6c8c7704221bd.tar.bz2 |
fix issue 7
Ignore-this: 97784bd32e2fba31eb1a54f24f57f702b04a067d
darcs-hash:20100210135212-d6583-c0ab23a1e93516e8572d437c2fd0d76136c843d0.gz
-rw-r--r-- | XUtil.hsc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -176,7 +176,7 @@ printString dpy drw fs@(Xft font) gc fc bc x y s = do (fi $ a + d) withXftDraw dpy drw visual colormap $ \draw -> withXftColorName dpy visual colormap fc $ - \color -> xftDrawString draw color font x y s + \color -> xftDrawString draw color font x (y - 2) s #endif data DynPixel = DynPixel { allocated :: Bool |