From a12645df301ca1261cf86158adf52168e366a1fc Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Tue, 10 Mar 2026 12:07:23 +0800 Subject: [PATCH] Rename ChangeQueryText1Async to ChangeQueryTextCoreAsync Refactored method name for clarity and consistency. Updated all internal references to use the new method name. No functional changes were made. --- Flow.Launcher/ViewModel/MainViewModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher/ViewModel/MainViewModel.cs b/Flow.Launcher/ViewModel/MainViewModel.cs index 757089dcb..7a5954ad8 100644 --- a/Flow.Launcher/ViewModel/MainViewModel.cs +++ b/Flow.Launcher/ViewModel/MainViewModel.cs @@ -795,10 +795,10 @@ namespace Flow.Launcher.ViewModel private async Task ChangeQueryTextAsync(string queryText, bool isReQuery = false) { // Must check access so that we will not block the UI thread which causes window visibility issue - await DispatcherHelper.InvokeAsync(() => ChangeQueryText1Async(queryText, isReQuery)); + await DispatcherHelper.InvokeAsync(() => ChangeQueryTextCoreAsync(queryText, isReQuery)); } - private async Task ChangeQueryText1Async(string queryText, bool isReQuery = false) + private async Task ChangeQueryTextCoreAsync(string queryText, bool isReQuery = false) { if (QueryText != queryText) {