Skip to content

Commit c14d9c1

Browse files
Merge pull request #43 from nullinside-development-group/fix/update
chore: removing dead code
2 parents df8a7f5 + 69ce412 commit c14d9c1

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

src/TwitchStreamingTools/Views/Loading.axaml.cs

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,10 @@ namespace TwitchStreamingTools.Views;
77
/// A loading icon.
88
/// </summary>
99
public partial class Loading : UserControl {
10-
/// <summary>
11-
/// The width of the icon.
12-
/// </summary>
13-
public static readonly StyledProperty<int> WidthProperty =
14-
AvaloniaProperty.Register<Loading, int>(nameof(Width), 1);
15-
1610
/// <summary>
1711
/// Initializes a new instance of the <see cref="Loading" /> class.
1812
/// </summary>
1913
public Loading() {
2014
InitializeComponent();
2115
}
22-
23-
/// <summary>
24-
/// The width of the icon.
25-
/// </summary>
26-
public int Width {
27-
get => GetValue(WidthProperty);
28-
set => SetValue(WidthProperty, value);
29-
}
3016
}

0 commit comments

Comments
 (0)