From ef7f471d507acd86494b55db7412303532292cb6 Mon Sep 17 00:00:00 2001 From: DB p Date: Sat, 4 Dec 2021 02:20:49 +0900 Subject: [PATCH] Fix Save in CheckFristLaunch --- Flow.Launcher/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/MainWindow.xaml.cs b/Flow.Launcher/MainWindow.xaml.cs index a6f45257a..c27cccd5c 100644 --- a/Flow.Launcher/MainWindow.xaml.cs +++ b/Flow.Launcher/MainWindow.xaml.cs @@ -238,7 +238,7 @@ namespace Flow.Launcher if (_settings.FirstLaunch) { _settings.FirstLaunch = false; - _viewModel.Save(); + PluginManager.API.SaveAppAllSettings(); OpenWelcomeWindow(); } }