- record_setup: add check existing recordings before set new timers

This commit is contained in:
svenhoefer
2016-06-02 21:37:33 +02:00
parent ff3f44d4d2
commit 6dddaff0d2
12 changed files with 110 additions and 7 deletions

View File

@@ -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 );