Skip to content

Commit

Permalink
fix: wrong SlideTrackValueFill resource keys (#1224)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazo0 authored Oct 2, 2023
1 parent 1c68e88 commit a64133b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/library/Uno.Themes.WinUI.Markup/Theme/Slider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ public static class Fill

public static class ValueFill
{
[ResourceKeyDefinition(typeof(Brush), "SliderTrackFill")]
[ResourceKeyDefinition(typeof(Brush), "SliderTrackValueFill")]
public static ThemeResourceKey<Brush> Default => new("SliderTrackFill");

[ResourceKeyDefinition(typeof(Brush), "SliderTrackFillDisabled")]
[ResourceKeyDefinition(typeof(Brush), "SliderTrackValueFillDisabled")]
public static ThemeResourceKey<Brush> Disabled => new("SliderTrackFillDisabled");
}

Expand Down

0 comments on commit a64133b

Please sign in to comment.