Skip to content

Commit cb8768e

Browse files
committed
save settings on start convert, #BUILD
1 parent 9d287f1 commit cb8768e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

MainWindow.xaml.cs

+2
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ static void ParseFile(ImportSettings importSettings, int fileIndex)
216216

217217
private void btnConvert_Click(object sender, RoutedEventArgs e)
218218
{
219+
SaveSettings();
219220
StartProcess();
220221
}
221222

@@ -327,6 +328,7 @@ private void LoadSettings()
327328

328329
txtInputFile.Text = Properties.Settings.Default.inputFile;
329330
txtOutput.Text = Properties.Settings.Default.outputFile;
331+
330332
chkAutoOffset.IsChecked = Properties.Settings.Default.useAutoOffset;
331333
txtGridSize.Text = Properties.Settings.Default.gridSize.ToString();
332334
chkUseMinPointCount.IsChecked = Properties.Settings.Default.useMinPointCount;

0 commit comments

Comments
 (0)