We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3824834 commit 373c353Copy full SHA for 373c353
src/Files.App/ViewModels/UserControls/NavigationToolbarViewModel.cs
@@ -1232,7 +1232,8 @@ public void PopulateOmnibarSuggestionsForCommandPaletteMode()
1232
1233
foreach (var item in suggestionItems)
1234
{
1235
- OmnibarCommandPaletteModeSuggestionItems.Add(item);
+ if (item.Text != Commands.OpenCommandPalette.Code.ToString())
1236
+ OmnibarCommandPaletteModeSuggestionItems.Add(item);
1237
}
1238
1239
if (OmnibarCommandPaletteModeSuggestionItems.Count is 0)
0 commit comments