Skip to content

Commit 18b889c

Browse files
committed
Remove empty lines
1 parent 43257ea commit 18b889c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Flow.Launcher/Helper/SingletonWindowOpener.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ public static T Open<T>(params object[] args) where T : Window
1212
?? (T)Activator.CreateInstance(typeof(T), args);
1313
Application.Current.MainWindow.Hide();
1414

15-
1615
// Fix UI bug
1716
// Add `window.WindowState = WindowState.Normal`
1817
// 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
2221
window.WindowState = WindowState.Normal;
2322
window.Show();
2423

25-
2624
window.Focus();
2725

2826
return (T)window;

0 commit comments

Comments
 (0)