Remove empty lines

This commit is contained in:
pc223 2021-06-23 00:11:54 +07:00
parent 43257ea9cf
commit 18b889c621

View file

@ -12,7 +12,6 @@ namespace Flow.Launcher.Helper
?? (T)Activator.CreateInstance(typeof(T), args);
Application.Current.MainWindow.Hide();
// Fix UI bug
// Add `window.WindowState = WindowState.Normal`
// If only use `window.Show()`, Settings-window doesn't show when minimized in taskbar
@ -22,7 +21,6 @@ namespace Flow.Launcher.Helper
window.WindowState = WindowState.Normal;
window.Show();
window.Focus();
return (T)window;