From 6220b34aabc7043977ad7316aa0417e7d8e2b1c3 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Thu, 9 Jan 2025 17:33:39 +0800 Subject: [PATCH] Fix dulplicated close event --- Flow.Launcher.Core/ProgressBoxEx.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Flow.Launcher.Core/ProgressBoxEx.xaml.cs b/Flow.Launcher.Core/ProgressBoxEx.xaml.cs index 00f4a8050..dc1f27404 100644 --- a/Flow.Launcher.Core/ProgressBoxEx.xaml.cs +++ b/Flow.Launcher.Core/ProgressBoxEx.xaml.cs @@ -70,6 +70,7 @@ namespace Flow.Launcher.Core if (!Application.Current.Dispatcher.CheckAccess()) { await Application.Current.Dispatcher.InvokeAsync(Close); + return; } Close();