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 4251b0b commit b478218Copy full SHA for b478218
src/Files.App.Controls/Omnibar/Omnibar.cs
@@ -219,6 +219,12 @@ internal protected bool TryToggleIsSuggestionsPopupOpen(bool wantToOpen)
219
return false;
220
}
221
222
+ if (CurrentSelectedMode is not null)
223
+ {
224
+ _textBoxSuggestionsListView.ItemTemplate = CurrentSelectedMode.ItemTemplate;
225
+ _textBoxSuggestionsListView.ItemsSource = CurrentSelectedMode.ItemsSource;
226
+ }
227
+
228
_textBoxSuggestionsPopup.IsOpen = wantToOpen;
229
230
GlobalHelper.WriteDebugStringForOmnibar("The suggestions pop-up is open.");
0 commit comments