mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 00:41:17 +02:00
gui/channellist: make displaying channel numbers optional
Conflicts: data/locale/deutsch.locale src/gui/channellist.cpp src/gui/osd_setup.cpp
This commit is contained in:
@@ -673,6 +673,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_numbers = configfile.getInt32("channellist_show_numbers", 1);
|
||||
|
||||
//screen configuration
|
||||
g_settings.screen_xres = configfile.getInt32("screen_xres", 100);
|
||||
@@ -1175,6 +1176,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_numbers", g_settings.channellist_show_numbers);
|
||||
|
||||
//screen configuration
|
||||
configfile.setInt32( "screen_xres", g_settings.screen_xres);
|
||||
|
Reference in New Issue
Block a user