From 73b24890d954159e644fcf435b92fe8f00375d35 Mon Sep 17 00:00:00 2001 From: Patrick Hogenboom Date: Wed, 8 Feb 2023 14:17:02 +0100 Subject: [PATCH] Set checkPlasticBranch checkbox when loading settings --- UnityLauncherPro/MainWindow.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/UnityLauncherPro/MainWindow.xaml.cs b/UnityLauncherPro/MainWindow.xaml.cs index da00a73..0b047ad 100644 --- a/UnityLauncherPro/MainWindow.xaml.cs +++ b/UnityLauncherPro/MainWindow.xaml.cs @@ -362,6 +362,7 @@ void LoadSettings() chkQuitAfterOpen.IsChecked = Properties.Settings.Default.closeAfterProject; chkShowLauncherArgumentsColumn.IsChecked = Properties.Settings.Default.showArgumentsColumn; chkShowGitBranchColumn.IsChecked = Properties.Settings.Default.showGitBranchColumn; + chkCheckPlasticBranch.IsChecked = Properties.Settings.Default.checkPlasticBranch; chkShowMissingFolderProjects.IsChecked = Properties.Settings.Default.showProjectsMissingFolder; chkAllowSingleInstanceOnly.IsChecked = Properties.Settings.Default.AllowSingleInstanceOnly; chkAskNameForQuickProject.IsChecked = Properties.Settings.Default.askNameForQuickProject;