From 6cc8da120ff3ed926b562575c300853d02d78cca Mon Sep 17 00:00:00 2001 From: Stefan Markovic <57057282+stefansjfw@users.noreply.github.com> Date: Tue, 12 Oct 2021 18:10:52 +0200 Subject: [PATCH] [PT Run] Align SelectedIndex and SelectedItem (#13702) * Set SelectedIndex to 0 after delayed execution of plugins * Revert "Set SelectedIndex to 0 after delayed execution of plugins" This reverts commit 5397d0f1fa13757749a79c3e72d627a7aadca10f. * Align hovered and selected item --- src/modules/launcher/PowerLauncher/ViewModel/MainViewModel.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/modules/launcher/PowerLauncher/ViewModel/MainViewModel.cs b/src/modules/launcher/PowerLauncher/ViewModel/MainViewModel.cs index 9c89d1af3c..409144a7b1 100644 --- a/src/modules/launcher/PowerLauncher/ViewModel/MainViewModel.cs +++ b/src/modules/launcher/PowerLauncher/ViewModel/MainViewModel.cs @@ -610,7 +610,6 @@ namespace PowerLauncher.ViewModel currentCancellationToken.ThrowIfCancellationRequested(); numResults = Results.Results.Count; Results.Sort(); - Results.SelectedItem = Results.Results.FirstOrDefault(); } }