mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 08:51:10 +02:00
- record_setup: add check existing recordings before set new timers
This commit is contained in:
@@ -641,6 +641,7 @@ int CNeutrinoApp::loadSetup(const char * fname)
|
||||
g_settings.recording_save_in_channeldir = configfile.getBool("recording_save_in_channeldir" , false);
|
||||
g_settings.recording_slow_warning = configfile.getBool("recording_slow_warning" , true);
|
||||
g_settings.recording_startstop_msg = configfile.getBool("recording_startstop_msg" , true);
|
||||
g_settings.recording_already_found_check = configfile.getBool("recording_already_found_check", false);
|
||||
|
||||
// default plugin for movieplayer
|
||||
g_settings.movieplayer_plugin = configfile.getString( "movieplayer_plugin", "---" );
|
||||
@@ -1172,6 +1173,7 @@ void CNeutrinoApp::saveSetup(const char * fname)
|
||||
configfile.setBool ("recording_save_in_channeldir" , g_settings.recording_save_in_channeldir );
|
||||
configfile.setBool ("recording_slow_warning" , g_settings.recording_slow_warning );
|
||||
configfile.setBool ("recording_startstop_msg" , g_settings.recording_startstop_msg );
|
||||
configfile.setBool ("recording_already_found_check" , g_settings.recording_already_found_check );
|
||||
|
||||
// default plugin for movieplayer
|
||||
configfile.setString ( "movieplayer_plugin", g_settings.movieplayer_plugin );
|
||||
|
Reference in New Issue
Block a user