mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
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
This commit is contained in:
parent
a320d4eedd
commit
58facabfb6
@ -1796,6 +1796,8 @@ Suur Karu <suurkaru@fastmail.fm>
|
|||||||
|
|
||||||
Ronny Kornexl <ronny.kornexl@online.de>
|
Ronny Kornexl <ronny.kornexl@online.de>
|
||||||
for reporting a problem with setting "No title" for broken event data
|
for reporting a problem with setting "No title" for broken event data
|
||||||
|
for suggesting to make the "Use small font" setup option *always* use the small
|
||||||
|
font if set to '3' - even if it would have been a fixed font
|
||||||
|
|
||||||
Bárta Vladimír <vladimir.barta@k2atmitec.cz>
|
Bárta Vladimír <vladimir.barta@k2atmitec.cz>
|
||||||
for translating OSD texts to the Czech language
|
for translating OSD texts to the Czech language
|
||||||
|
3
HISTORY
3
HISTORY
@ -4603,3 +4603,6 @@ Video Disk Recorder Revision History
|
|||||||
- Updated the INSTALL file's section about non-VDR files in the video directory
|
- Updated the INSTALL file's section about non-VDR files in the video directory
|
||||||
(since version 1.3.38 disk access is done in a separate thread, so the watchdog
|
(since version 1.3.38 disk access is done in a separate thread, so the watchdog
|
||||||
timer won't hit).
|
timer won't hit).
|
||||||
|
- 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 (suggested by Ronny
|
||||||
|
Kornexl).
|
||||||
|
4
font.c
4
font.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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"
|
#include "config.h"
|
||||||
@ -123,7 +123,7 @@ const cFont *cFont::GetFont(eDvbFont Font)
|
|||||||
{
|
{
|
||||||
if (Setup.UseSmallFont == 0 && Font == fontSml)
|
if (Setup.UseSmallFont == 0 && Font == fontSml)
|
||||||
Font = fontOsd;
|
Font = fontOsd;
|
||||||
else if (Setup.UseSmallFont == 2 && Font == fontOsd)
|
else if (Setup.UseSmallFont == 2)
|
||||||
Font = fontSml;
|
Font = fontSml;
|
||||||
if (!fonts[Font])
|
if (!fonts[Font])
|
||||||
SetFont(Font);
|
SetFont(Font);
|
||||||
|
Loading…
Reference in New Issue
Block a user