Browse Source

Use comma operator for Separator style.

pull/2345/head
Steven Kirk 7 years ago
parent
commit
36da749d38
  1. 8
      src/Avalonia.Themes.Default/Separator.xaml

8
src/Avalonia.Themes.Default/Separator.xaml

@ -11,13 +11,7 @@
</Setter>
</Style>
<Style Selector="MenuItem > Separator">
<Setter Property="Background" Value="{DynamicResource ThemeControlMidBrush}"/>
<Setter Property="Margin" Value="29,1,0,1"/>
<Setter Property="Height" Value="1"/>
</Style>
<Style Selector="ContextMenu > Separator">
<Style Selector="MenuItem > Separator, ContextMenu > Separator">
<Setter Property="Background" Value="{DynamicResource ThemeControlMidBrush}"/>
<Setter Property="Margin" Value="29,1,0,1"/>
<Setter Property="Height" Value="1"/>

Loading…
Cancel
Save