Browse Source

Fix RadioButton bullet border at 1px.

`BorderThickness` is now a `Thickness` so we can't bind `StrokeThickness` to it.
pull/1609/head
Steven Kirk 8 years ago
parent
commit
755ce21564
  1. 2
      src/Avalonia.Themes.Default/RadioButton.xaml

2
src/Avalonia.Themes.Default/RadioButton.xaml

@ -8,7 +8,7 @@
<Grid ColumnDefinitions="Auto,*" Background="{TemplateBinding Background}">
<Ellipse Name="border"
Stroke="{TemplateBinding BorderBrush}"
StrokeThickness="{TemplateBinding BorderThickness}"
StrokeThickness="1"
Width="18"
Height="18"
VerticalAlignment="Center"/>

Loading…
Cancel
Save