summaryrefslogtreecommitdiff
path: root/messagebox.c
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2013-05-28 17:23:33 +0200
committerlouis <louis.braun@gmx.de>2013-05-28 17:23:33 +0200
commit4f93ac2516dacdec5e142aaf60a06c6e1c16daf3 (patch)
tree926faf2bc69438f1feb6e43be9f189f15387d9f4 /messagebox.c
parent6a6db7ff523943ec904ee85837b62885da64706e (diff)
downloadvdr-plugin-tvguide-4f93ac2516dacdec5e142aaf60a06c6e1c16daf3.tar.gz
vdr-plugin-tvguide-4f93ac2516dacdec5e142aaf60a06c6e1c16daf3.tar.bz2
avoided nasty font pixelation effects with theme iceblue
Diffstat (limited to 'messagebox.c')
-rw-r--r--messagebox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/messagebox.c b/messagebox.c
index fd7acb9..5d8a6b4 100644
--- a/messagebox.c
+++ b/messagebox.c
@@ -83,7 +83,7 @@ bool cMessageBox::Start(int displayTime, cString msg) {
int textWidth = 0;
for (int i=0; i<textLines; i++) {
textWidth = tvguideConfig.FontMessageBox->Width(message.GetLine(i));
- content->DrawText(cPoint((width - textWidth)/2, 20 + i*textHeight), message.GetLine(i), theme.Color(clrFont), clrTransparent, tvguideConfig.FontMessageBox);
+ content->DrawText(cPoint((width - textWidth)/2, 20 + i*textHeight), message.GetLine(i), theme.Color(clrFont), theme.Color(clrBackground), tvguideConfig.FontMessageBox);
}
cPixmap::Unlock();
msgboxThread->Start();