From 7c5993d75b8ecf4d1cdc5d822e65766fbc8681f9 Mon Sep 17 00:00:00 2001 From: Alekhya Reddy Date: Wed, 15 Apr 2020 11:53:21 -0700 Subject: [PATCH] Set MainViewModel visibility to hidden on startup --- src/modules/launcher/PowerLauncher/App.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/launcher/PowerLauncher/App.xaml.cs b/src/modules/launcher/PowerLauncher/App.xaml.cs index 354c25d6c8..ae9f12a648 100644 --- a/src/modules/launcher/PowerLauncher/App.xaml.cs +++ b/src/modules/launcher/PowerLauncher/App.xaml.cs @@ -88,7 +88,7 @@ namespace PowerLauncher RegisterExitEvents(); - _mainVM.MainWindowVisibility = _settings.HideOnStartup ? Visibility.Hidden : Visibility.Visible; + _mainVM.MainWindowVisibility = Visibility.Hidden; Log.Info("|App.OnStartup|End Wox startup ---------------------------------------------------- ");