summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-02-17 15:58:31 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-02-17 15:58:31 +0100
commit5db8309b872f7fbe31b746da17fc3b230a863d14 (patch)
tree1775a9836d3d0da116c942bafa919a0c337a2547
parent10d3ad00aec593c2748189e046406bc6c1142814 (diff)
downloadvdr-5db8309b872f7fbe31b746da17fc3b230a863d14.tar.gz
vdr-5db8309b872f7fbe31b746da17fc3b230a863d14.tar.bz2
The ST:TNG skin now uses the fixed font if requested when displaying texts
-rw-r--r--HISTORY1
-rw-r--r--skinsttng.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index d0f7f1c8..6b990db5 100644
--- a/HISTORY
+++ b/HISTORY
@@ -4330,3 +4330,4 @@ Video Disk Recorder Revision History
- Now logging the description (if present) in case a thread is canceled (suggested
by Marco Schlüßler).
- cMenuText now uses the given font (thanks to Rolf Ahrenberg).
+- The ST:TNG skin now uses the fixed font if requested when displaying texts.
diff --git a/skinsttng.c b/skinsttng.c
index 97e8fc8b..47a154ed 100644
--- a/skinsttng.c
+++ b/skinsttng.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: skinsttng.c 1.18 2006/02/05 14:51:39 kls Exp $
+ * $Id: skinsttng.c 1.19 2006/02/17 15:57:37 kls Exp $
*/
// Star Trek: The Next Generation® is a registered trademark of Paramount Pictures
@@ -632,7 +632,7 @@ int cSkinSTTNGDisplayMenu::GetTextAreaWidth(void) const
const cFont *cSkinSTTNGDisplayMenu::GetTextAreaFont(bool FixedFont) const
{
const cFont *font = cFont::GetFont(FixedFont ? fontFix : fontOsd);
- font = cFont::GetFont(fontSml);//XXX -> make a way to let the text define which font to use
+ //XXX -> make a way to let the text define which font to use
return font;
}