Skip to content

Commit 2336a32

Browse files
authored
Fixed an issue with combobox item templates #7
Fixed an issue with combobox item templates #7
2 parents 5073d3b + 2b7dbdc commit 2336a32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

craftersmine.Ui.League/LeagueUi.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,7 @@
10611061
<Setter.Value>
10621062
<ControlTemplate TargetType="ComboBoxItem">
10631063
<Border x:Name="ItemContainerBorder" Padding="8" SnapsToDevicePixels="True" BorderBrush="{StaticResource LeagueComboBoxItemBorder}" BorderThickness="0 1 0 0">
1064-
<ContentControl x:Name="ItemContainerHost" Content="{TemplateBinding Content}" Foreground="{StaticResource LeagueComboBoxItemForegroundDefault}"/>
1064+
<ContentControl x:Name="ItemContainerHost" Content="{TemplateBinding Content}" ContentTemplate="{TemplateBinding ContentTemplate}" Foreground="{StaticResource LeagueComboBoxItemForegroundDefault}"/>
10651065
</Border>
10661066
<ControlTemplate.Triggers>
10671067
<Trigger Property="IsMouseOver" Value="True">

craftersmine.Ui.League/craftersmine.Ui.League.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
88
<GenerateDocumentationFile>True</GenerateDocumentationFile>
99
<RootNamespace>craftersmine.Ui.League</RootNamespace>
10-
<Version>1.3.1</Version>
10+
<Version>1.3.2</Version>
1111
<Authors>craftersmine</Authors>
1212
<Description>WPF library with styles from League of Legends Client</Description>
1313
<Copyright>Copyright © craftersmine 2023</Copyright>

0 commit comments

Comments
 (0)