osd-setup: allow to enable/disable event logos

Origin commit data
------------------
Branch: ni/coolstream
Commit: 7115402334
Author: vanhofen <vanhofen@gmx.de>
Date: 2018-12-25 (Tue, 25 Dec 2018)

Origin message was:
------------------
- osd-setup: allow to enable/disable event logos

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2018-12-25 01:12:16 +01:00
parent 2cddcedd5a
commit 77593217fd
9 changed files with 32 additions and 1 deletions

View File

@@ -864,6 +864,7 @@ int CNeutrinoApp::loadSetup(const char * fname)
g_settings.channellist_sort_mode = configfile.getInt32("channellist_sort_mode", 0);//sort mode: alpha, freq, sat
g_settings.channellist_numeric_adjust = configfile.getInt32("channellist_numeric_adjust", 0);
g_settings.channellist_show_channellogo = configfile.getInt32("channellist_show_channellogo", 1);
g_settings.channellist_show_eventlogo = configfile.getInt32("channellist_show_eventlogo", 1);
g_settings.channellist_show_infobox = configfile.getInt32("channellist_show_infobox", 1);
g_settings.channellist_show_numbers = configfile.getInt32("channellist_show_numbers", 1);
g_settings.channellist_show_res_icon = configfile.getInt32("channellist_show_res_icon", 0);
@@ -1683,6 +1684,7 @@ void CNeutrinoApp::saveSetup(const char * fname)
configfile.setInt32("channellist_sort_mode", g_settings.channellist_sort_mode);
configfile.setInt32("channellist_numeric_adjust", g_settings.channellist_numeric_adjust);
configfile.setInt32("channellist_show_channellogo", g_settings.channellist_show_channellogo);
configfile.setInt32("channellist_show_eventlogo", g_settings.channellist_show_eventlogo);
configfile.setInt32("channellist_show_infobox", g_settings.channellist_show_infobox);
configfile.setInt32("channellist_show_numbers", g_settings.channellist_show_numbers);
configfile.setInt32("channellist_show_res_icon", g_settings.channellist_show_res_icon);