diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-06-04 09:18:51 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-06-04 09:18:51 +0200 |
commit | f15bb1f9aff909fe74f8521c541b7bcdb12644f7 (patch) | |
tree | f787508790fa5043d504e5ea83364fce62ddb5b3 | |
parent | f8fc3b502ac230b2f652f51009894e96891411c8 (diff) | |
download | vdr-f15bb1f9aff909fe74f8521c541b7bcdb12644f7.tar.gz vdr-f15bb1f9aff909fe74f8521c541b7bcdb12644f7.tar.bz2 |
Adjusted the default values for OSD and font sizes to better fit HDTV
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | config.c | 14 |
2 files changed, 8 insertions, 7 deletions
@@ -7158,3 +7158,4 @@ Video Disk Recorder Revision History - 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). - Fixed making LCARS the default skin. +- Adjusted the default values for OSD and font sizes to better fit HDTV. @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * 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" @@ -424,10 +424,10 @@ cSetup::cSetup(void) UseDolbyDigital = 1; ChannelInfoPos = 0; ChannelInfoTime = 5; - OSDLeftP = 0.08; - OSDTopP = 0.08; - OSDWidthP = 0.87; - OSDHeightP = 0.84; + OSDLeftP = 0.03; + OSDTopP = 0.03; + OSDWidthP = 0.93; + OSDHeightP = 0.93; OSDLeft = 54; OSDTop = 45; OSDWidth = 624; @@ -439,8 +439,8 @@ cSetup::cSetup(void) strcpy(FontOsd, DefaultFontOsd); strcpy(FontSml, DefaultFontSml); strcpy(FontFix, DefaultFontFix); - FontOsdSizeP = 0.038; - FontSmlSizeP = 0.035; + FontOsdSizeP = 0.032; + FontSmlSizeP = 0.028; FontFixSizeP = 0.031; FontOsdSize = 22; FontSmlSize = 18; |