summaryrefslogtreecommitdiff
path: root/font.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-04-16 11:08:32 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-04-16 11:08:32 +0200
commit58facabfb6df0ebac572792be34ca55b11c8afb0 (patch)
tree353f67f93df319bc021010db6a3a12baaf5f0f38 /font.c
parenta320d4eedd9c702906c89dade193e5d90dd2ba90 (diff)
downloadvdr-58facabfb6df0ebac572792be34ca55b11c8afb0.tar.gz
vdr-58facabfb6df0ebac572792be34ca55b11c8afb0.tar.bz2
Changed the behaviour of the "Use small font" setup option to *always* use the small font if set to '3' - even if it would have been a fixed font
Diffstat (limited to 'font.c')
-rw-r--r--font.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/font.c b/font.c
index 87440d28..fe2ec6e8 100644
--- a/font.c
+++ b/font.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: font.c 1.12 2006/02/05 13:49:10 kls Exp $
+ * $Id: font.c 1.13 2006/04/16 10:59:15 kls Exp $
*/
#include "config.h"
@@ -123,7 +123,7 @@ const cFont *cFont::GetFont(eDvbFont Font)
{
if (Setup.UseSmallFont == 0 && Font == fontSml)
Font = fontOsd;
- else if (Setup.UseSmallFont == 2 && Font == fontOsd)
+ else if (Setup.UseSmallFont == 2)
Font = fontSml;
if (!fonts[Font])
SetFont(Font);