diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-16 11:08:32 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-16 11:08:32 +0200 |
commit | 58facabfb6df0ebac572792be34ca55b11c8afb0 (patch) | |
tree | 353f67f93df319bc021010db6a3a12baaf5f0f38 /font.c | |
parent | a320d4eedd9c702906c89dade193e5d90dd2ba90 (diff) | |
download | vdr-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |