mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Adjusted the default values for OSD and font sizes to better fit HDTV
This commit is contained in:
parent
f8fc3b502a
commit
f15bb1f9af
1
HISTORY
1
HISTORY
@ -7158,3 +7158,4 @@ Video Disk Recorder Revision History
|
|||||||
- Now scaling down the Transfer Mode indicator bitmap in the LCARS skin in case it
|
- Now scaling down the Transfer Mode indicator bitmap in the LCARS skin in case it
|
||||||
doesn't fit with the selected font size (reported by Reinhard Nissl).
|
doesn't fit with the selected font size (reported by Reinhard Nissl).
|
||||||
- Fixed making LCARS the default skin.
|
- Fixed making LCARS the default skin.
|
||||||
|
- Adjusted the default values for OSD and font sizes to better fit HDTV.
|
||||||
|
14
config.c
14
config.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: config.c 2.23 2012/06/04 09:06:57 kls Exp $
|
* $Id: config.c 2.24 2012/06/04 09:14:04 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
@ -424,10 +424,10 @@ cSetup::cSetup(void)
|
|||||||
UseDolbyDigital = 1;
|
UseDolbyDigital = 1;
|
||||||
ChannelInfoPos = 0;
|
ChannelInfoPos = 0;
|
||||||
ChannelInfoTime = 5;
|
ChannelInfoTime = 5;
|
||||||
OSDLeftP = 0.08;
|
OSDLeftP = 0.03;
|
||||||
OSDTopP = 0.08;
|
OSDTopP = 0.03;
|
||||||
OSDWidthP = 0.87;
|
OSDWidthP = 0.93;
|
||||||
OSDHeightP = 0.84;
|
OSDHeightP = 0.93;
|
||||||
OSDLeft = 54;
|
OSDLeft = 54;
|
||||||
OSDTop = 45;
|
OSDTop = 45;
|
||||||
OSDWidth = 624;
|
OSDWidth = 624;
|
||||||
@ -439,8 +439,8 @@ cSetup::cSetup(void)
|
|||||||
strcpy(FontOsd, DefaultFontOsd);
|
strcpy(FontOsd, DefaultFontOsd);
|
||||||
strcpy(FontSml, DefaultFontSml);
|
strcpy(FontSml, DefaultFontSml);
|
||||||
strcpy(FontFix, DefaultFontFix);
|
strcpy(FontFix, DefaultFontFix);
|
||||||
FontOsdSizeP = 0.038;
|
FontOsdSizeP = 0.032;
|
||||||
FontSmlSizeP = 0.035;
|
FontSmlSizeP = 0.028;
|
||||||
FontFixSizeP = 0.031;
|
FontFixSizeP = 0.031;
|
||||||
FontOsdSize = 22;
|
FontOsdSize = 22;
|
||||||
FontSmlSize = 18;
|
FontSmlSize = 18;
|
||||||
|
Loading…
Reference in New Issue
Block a user