summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--displaymenuview.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 1eef112..1198d08 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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);
}