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 43257ea commit 18b889cCopy full SHA for 18b889c
Flow.Launcher/Helper/SingletonWindowOpener.cs
@@ -12,7 +12,6 @@ public static T Open<T>(params object[] args) where T : Window
12
?? (T)Activator.CreateInstance(typeof(T), args);
13
Application.Current.MainWindow.Hide();
14
15
-
16
// Fix UI bug
17
// Add `window.WindowState = WindowState.Normal`
18
// If only use `window.Show()`, Settings-window doesn't show when minimized in taskbar
@@ -22,7 +21,6 @@ public static T Open<T>(params object[] args) where T : Window
22
21
window.WindowState = WindowState.Normal;
23
window.Show();
24
25
26
window.Focus();
27
28
return (T)window;
0 commit comments