We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e80d191 commit 7e3de02Copy full SHA for 7e3de02
Flow.Launcher/SettingWindow.xaml.cs
@@ -30,9 +30,9 @@ public SettingWindow()
30
_settings = Ioc.Default.GetRequiredService<Settings>();
31
_viewModel = Ioc.Default.GetRequiredService<SettingWindowViewModel>();
32
DataContext = _viewModel;
33
- InitializeComponent();
34
-
+ // Because WindowStartupLocation is Manual, so we need to initialize position before InitializeComponent
35
UpdatePositionAndState();
+ InitializeComponent();
36
}
37
38
#endregion
0 commit comments