Skip to content

Commit dd467e2

Browse files
committed
Fix typo
1 parent 6bb638b commit dd467e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Flow.Launcher/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public partial class App : IDisposable, ISingleInstanceApp
3131

3232
public static IPublicAPI API { get; private set; }
3333
public static JoinableTaskFactory JTF { get; } = new JoinableTaskFactory(new JoinableTaskContext());
34-
public static bool Exitting => _mainWindow.CanClose;
34+
public static bool Exiting => _mainWindow.CanClose;
3535

3636
#endregion
3737

Flow.Launcher/ViewModel/MainViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1650,7 +1650,7 @@ public bool ShouldIgnoreHotkeys()
16501650
public void Show()
16511651
{
16521652
// When application is exiting, we should not show the main window
1653-
if (App.Exitting) return;
1653+
if (App.Exiting) return;
16541654

16551655
// When application is exiting, the Application.Current will be null
16561656
Application.Current?.Dispatcher.Invoke(() =>

0 commit comments

Comments
 (0)