From 46526bc00cf3336b4557955e3ee6462afd6b3a46 Mon Sep 17 00:00:00 2001 From: Mike Griese Date: Mon, 13 May 2024 11:42:01 -0500 Subject: [PATCH] Remove the animations from the suggestions UI (#17247) gotta go fast, and these animations are not fast noted in #15845 --- .../TerminalApp/SuggestionsControl.xaml | 22 ++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/src/cascadia/TerminalApp/SuggestionsControl.xaml b/src/cascadia/TerminalApp/SuggestionsControl.xaml index 7350b2146e..b3e81865b3 100644 --- a/src/cascadia/TerminalApp/SuggestionsControl.xaml +++ b/src/cascadia/TerminalApp/SuggestionsControl.xaml @@ -12,6 +12,7 @@ xmlns:model="using:Microsoft.Terminal.Settings.Model" xmlns:mtu="using:Microsoft.Terminal.UI" xmlns:mux="using:Microsoft.UI.Xaml.Controls" + MinWidth="256" AllowFocusOnInteraction="True" AutomationProperties.Name="{x:Bind ControlName, Mode=OneWay}" IsTabStop="True" @@ -99,6 +100,24 @@ GeneralItemTemplate="{StaticResource GeneralItemTemplate}" NestedItemTemplate="{StaticResource NestedItemTemplate}" /> + + @@ -203,7 +222,8 @@ ItemClick="_listItemClicked" ItemsSource="{x:Bind FilteredActions}" SelectionChanged="_listItemSelectionChanged" - SelectionMode="Single" /> + SelectionMode="Single" + Style="{StaticResource NoAnimationsPlease}" />