File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ private void SaveSettings()
219
219
220
220
List < string > args = new List < string > ( ) ;
221
221
222
- if ( _originalStartup != ( tbtnAutoRun . ToggleState == ToggleButtonState . Active ) )
222
+ if ( _originalStartup != ( tbtnAutoRun . ToggleState == ToggleButtonState . Active ) )
223
223
{
224
224
_originalStartup = tbtnAutoRun . ToggleState == ToggleButtonState . Active ;
225
225
args . Add ( _originalStartup ? "0" : "1" ) ;
@@ -255,7 +255,7 @@ private static void StartRegManager(IReadOnlyList<string> args)
255
255
for ( int i = 0 ; i < args . Count ; i ++ )
256
256
{
257
257
a += args [ i ] ;
258
- if ( i != args . Count - 1 )
258
+ if ( i != args . Count - 1 )
259
259
{
260
260
a += " " ;
261
261
}
@@ -376,7 +376,7 @@ private void btnSave_Click(object sender, EventArgs e)
376
376
private void btnSelectPath_Click ( object sender , EventArgs e )
377
377
{
378
378
cboLanguage . SelectedIndex = 2 ;
379
- OpenFileDialog ofd = new OpenFileDialog { Filter = "XML (*.xml)|*.xml" } ;
379
+ OpenFileDialog ofd = new OpenFileDialog { Filter = "XML (*.xml)|*.xml" } ;
380
380
if ( ofd . ShowDialog ( ) == DialogResult . OK )
381
381
{
382
382
txtLanguagePath . Text = ofd . FileName ;
You can’t perform that action at this time.
0 commit comments