diff options
Diffstat (limited to 'setup.c')
-rw-r--r-- | setup.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -180,6 +180,8 @@ void cNopacitySetup::Store(void) { SetupStore("epgImageHeight", config.epgImageHeight); SetupStore("epgImageWidthLarge", config.epgImageWidthLarge); SetupStore("epgImageHeightLarge", config.epgImageHeightLarge); + SetupStore("posterWidth", config.posterWidth); + SetupStore("posterHeight", config.posterHeight); SetupStore("menuRecFolderSize", config.menuRecFolderSize); SetupStore("borderDetailedEPG", config.borderDetailedEPG); SetupStore("borderDetailedRecordings", config.borderDetailedRecordings); @@ -476,6 +478,8 @@ void cNopacitySetupMenuDisplayRecordings::Set(void) { if (tmpNopacityConfig->displayAdditionalRecEPGPictures) Add(new cMenuEditIntItem(cString::sprintf("%s%s", *spacer, tr("Number of EPG pictures to display")), &tmpNopacityConfig->numAdditionalRecEPGPictures, 1, 9)); Add(new cMenuEditIntItem(tr("Folder Icon Size"), &tmpNopacityConfig->menuRecFolderSize, 30, 300)); + Add(new cMenuEditIntItem(tr("Width of manually set recording poster"), &tmpNopacityConfig->posterWidth, 100, 1000)); + Add(new cMenuEditIntItem(tr("Height of manually set recording poster"), &tmpNopacityConfig->posterHeight, 100, 1000)); Add(new cMenuEditIntItem(tr("Adjust Font Size - Menu Item"), &tmpNopacityConfig->fontMenuitemRecordings, -20, 20)); Add(new cMenuEditIntItem(tr("Adjust Font Size - Menu Item Small"), &tmpNopacityConfig->fontMenuitemRecordingsSmall, -20, 20)); |