diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | displaymenuview.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -192,3 +192,4 @@ Version 0.1.1 - Background of ChannelDisplay configurable also to cover channel logo - Added standalone RSS Feed - check for Slash at end of startup path parameters +- changed scaling of EPG info window font size diff --git a/displaymenuview.c b/displaymenuview.c index 6026462..c43ebaf 100644 --- a/displaymenuview.c +++ b/displaymenuview.c @@ -241,7 +241,7 @@ void cNopacityDisplayMenuView::CreateFonts(void) { fontTimers = cFont::CreateFont(config.fontName, (contentHeight - 3*spaceMenu - diskUsageHeight) / 25 - 6 + config.fontTimers); fontButtons = cFont::CreateFont(config.fontName, buttonHeight*0.8 + config.fontButtons); fontMessage = cFont::CreateFont(config.fontName, messageHeight / 3 + config.fontMessageMenu); - fontEPGInfoWindow = cFont::CreateFont(config.fontName, (config.menuHeightInfoWindow * contentHeight / 100)/ 6 + config.fontEPGInfoWindow); + fontEPGInfoWindow = cFont::CreateFont(config.fontName, contentHeight / 30 + config.fontEPGInfoWindow); fontRssFeed = cFont::CreateFont(config.fontName, (rssFeedHeight / 2) + 3 + config.fontRssFeed); } |