Skip to content

Commit eb15e2c

Browse files
committed
fix: MVVM Toolkit 别警告了, 我乖乖改就是了
1 parent dbe730c commit eb15e2c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

CurvaLauncher/ViewModels/MainViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ public void SelectPrev()
149149
{
150150
if (QueryResults.Count == 0)
151151
{
152-
if (_lastInvokedQueryText != null && string.IsNullOrWhiteSpace(QueryText))
153-
QueryText = _lastInvokedQueryText;
152+
if (LastInvokedQueryText != null && string.IsNullOrWhiteSpace(QueryText))
153+
QueryText = LastInvokedQueryText;
154154

155155
return;
156156
}

0 commit comments

Comments
 (0)