Skip to content

Commit

Permalink
Merge pull request #230 from Nickelony/master
Browse files Browse the repository at this point in the history
Fixed CompletionList Foreground and Background colors not applying.
  • Loading branch information
dgrunwald authored Sep 6, 2020
2 parents 6f3e9b7 + 59266ca commit d7339e5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ICSharpCode.AvalonEdit/CodeCompletion/CompletionList.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@
<Setter.Value>
<ControlTemplate TargetType="{x:Type cc:CompletionList}">
<cc:CompletionListBox x:Name="PART_ListBox"
ItemContainerStyle="{StaticResource CompletionListBoxItem}">
ItemContainerStyle="{StaticResource CompletionListBoxItem}"
Background="{TemplateBinding Background}"
TextBlock.Foreground="{TemplateBinding Foreground}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
Expand Down

0 comments on commit d7339e5

Please sign in to comment.