Skip to content

Commit

Permalink
Make border stroke use the background opacity option
Browse files Browse the repository at this point in the history
  • Loading branch information
danielchalmers committed Jan 4, 2025
1 parent b198521 commit eabd89f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion DesktopClock/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@
<DataTrigger.Setters>
<Setter Property="Stroke">
<Setter.Value>
<SolidColorBrush Color="{Binding OuterColor, Source={x:Static p:Settings.Default}, Mode=OneWay}" />
<SolidColorBrush Opacity="{Binding BackgroundOpacity, Source={x:Static p:Settings.Default}, Mode=OneWay}"
Color="{Binding OuterColor, Source={x:Static p:Settings.Default}, Mode=OneWay}" />
</Setter.Value>
</Setter>

Expand Down

0 comments on commit eabd89f

Please sign in to comment.