Skip to content

Commit

Permalink
fix: MVVM Toolkit 别警告了, 我乖乖改就是了
Browse files Browse the repository at this point in the history
  • Loading branch information
SlimeNull committed Jan 14, 2024
1 parent dbe730c commit eb15e2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CurvaLauncher/ViewModels/MainViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ public void SelectPrev()
{
if (QueryResults.Count == 0)
{
if (_lastInvokedQueryText != null && string.IsNullOrWhiteSpace(QueryText))
QueryText = _lastInvokedQueryText;
if (LastInvokedQueryText != null && string.IsNullOrWhiteSpace(QueryText))
QueryText = LastInvokedQueryText;

return;
}
Expand Down

0 comments on commit eb15e2c

Please sign in to comment.