summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Font.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Font.cc b/src/Font.cc
index d4a6950d..af23906d 100644
--- a/src/Font.cc
+++ b/src/Font.cc
@@ -267,11 +267,11 @@ void BFont::drawString(Drawable d, int x, int y, const BColor &color,
c.color.red = 0;
c.color.green = 0;
c.color.blue = 0;
- c.color.alpha = 0x55 | 0x55 << 8; // transparent shadow
+ c.color.alpha = 0x49 | 0x49 << 8; // transparent shadow
c.pixel = BlackPixel(_display, _screen->getScreenNumber());
- XftDrawStringUtf8(draw, &c, _xftfont, x - 1, _xftfont->ascent + y + 1,
+ XftDrawStringUtf8(draw, &c, _xftfont, x + 1, _xftfont->ascent + y + 1,
(XftChar8 *) string.c_str(), string.size());
}