Skip to content

Commit

Permalink
DYN-7759: hover fix (#15619)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnenov authored and QilongTang committed Nov 8, 2024
1 parent 6ddb1c4 commit 771cbc1
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@

<!-- DataTemplate for ComboBox items -->
<DataTemplate x:Key="VersionInfoTemplate">
<StackPanel MinWidth="111" Orientation="Horizontal">
<StackPanel MinWidth="111"
HorizontalAlignment="Stretch"
Background="Transparent"
Orientation="Horizontal">
<!-- Compatibility Icon -->
<Button Width="18"
Height="18"
Expand Down Expand Up @@ -446,6 +449,7 @@
Orientation="Vertical">
<ComboBox x:Name="VersionComboBox"
HorizontalAlignment="Left"
HorizontalContentAlignment="Stretch"
ItemTemplate="{StaticResource VersionInfoTemplate}"
ItemsSource="{Binding Path=ReversedVersionInformationList, UpdateSourceTrigger=PropertyChanged}"
SelectedItem="{Binding Path=SelectedVersion, UpdateSourceTrigger=PropertyChanged}">
Expand Down

0 comments on commit 771cbc1

Please sign in to comment.