From 01b205e6f1c0fc9805e6c036b76945bd87a181a6 Mon Sep 17 00:00:00 2001 From: 2dust <31833384+2dust@users.noreply.github.com> Date: Sun, 7 Jul 2024 21:11:04 +0800 Subject: [PATCH] Adjust information DispatcherPriority --- v2rayN/v2rayN/Views/MsgView.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2rayN/v2rayN/Views/MsgView.xaml.cs b/v2rayN/v2rayN/Views/MsgView.xaml.cs index f6cac1128b..e00574a7ce 100644 --- a/v2rayN/v2rayN/Views/MsgView.xaml.cs +++ b/v2rayN/v2rayN/Views/MsgView.xaml.cs @@ -31,7 +31,7 @@ public MsgView() private void DelegateAppendText(string msg) { - Dispatcher.BeginInvoke(AppendText, DispatcherPriority.Send, msg); + Dispatcher.BeginInvoke(AppendText, DispatcherPriority.ApplicationIdle, msg); } public void AppendText(string msg)