Add null check in SelectPrevTabItem (#7139)

This commit is contained in:
Arjun Balgovind
2020-10-07 12:22:54 -07:00
committed by GitHub
parent 69e25cfefc
commit eae0937db0

View File

@@ -174,7 +174,7 @@ namespace PowerLauncher.ViewModel
{ {
// Tabbing backwards should highlight the last item of the previous row // Tabbing backwards should highlight the last item of the previous row
SelectPrevResult(); SelectPrevResult();
SelectedItem.SelectLastContextButton(); SelectedItem?.SelectLastContextButton();
} }
} }