@@ -286,6 +286,10 @@ private void MainForm_Load(object sender, EventArgs e)
286286 description = string . Format ( "CP{0} - {1}" , codePage , encoding . DisplayName ) ;
287287 var index = encodingComboBox . Items . Add ( description ) ;
288288 codePages [ index ] = encoding ;
289+ if ( codePage == 65001 )
290+ {
291+ encodingComboBox . SelectedIndex = index ;
292+ }
289293 if ( codePage == defaultCodePage )
290294 {
291295 codePages [ defaultIndex ] = encoding ;
@@ -407,7 +411,7 @@ private void DisplaySettings(Properties.Settings settings)
407411 domainTextBox . Text = settings . DefaultEmailDomain ;
408412 logTextBox . Text = settings . LogFile ;
409413 transcodeCheckBox . Checked = settings . TranscodeComments ;
410- resetRepoCheckBox . Checked = settings . ResetRepo ;
414+ resetRepoCheckBox . Checked = settings . ResetRepo || settings . ContinueSync ;
411415 forceAnnotatedCheckBox . Checked = settings . ForceAnnotatedTags ;
412416 anyCommentUpDown . Value = settings . AnyCommentSeconds ;
413417 sameCommentUpDown . Value = settings . SameCommentSeconds ;
@@ -444,6 +448,7 @@ private void UpdateSettings(Properties.Settings settings)
444448 settings . LogFile = logTextBox . Text ;
445449 settings . TranscodeComments = transcodeCheckBox . Checked ;
446450 settings . ResetRepo = resetRepoCheckBox . Checked ;
451+ settings . ContinueSync = continueSyncCheckBox . Checked ;
447452 settings . ForceAnnotatedTags = forceAnnotatedCheckBox . Checked ;
448453 settings . AnyCommentSeconds = ( int ) anyCommentUpDown . Value ;
449454 settings . SameCommentSeconds = ( int ) sameCommentUpDown . Value ;
0 commit comments