diff options
author | louis <louis.braun@gmx.de> | 2013-05-28 17:23:33 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-05-28 17:23:33 +0200 |
commit | 4f93ac2516dacdec5e142aaf60a06c6e1c16daf3 (patch) | |
tree | 926faf2bc69438f1feb6e43be9f189f15387d9f4 /messagebox.c | |
parent | 6a6db7ff523943ec904ee85837b62885da64706e (diff) | |
download | vdr-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.c | 2 |
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();
|