Browse Source
Merge pull request #11089 from AvaloniaUI/refresh_vusualizer_fix
Correct Refresh Visualizer PullDirectionProperty's access modifier
pull/11111/head
Max Katz
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/Avalonia.Controls/PullToRefresh/RefreshVisualizer.cs
|
|
|
@ -38,7 +38,7 @@ namespace Avalonia.Controls |
|
|
|
/// <summary>
|
|
|
|
/// Defines the <see cref="PullDirection"/> property.
|
|
|
|
/// </summary>
|
|
|
|
public static readonly StyledProperty<PullDirection> PullDirectionProperty = |
|
|
|
internal static readonly StyledProperty<PullDirection> PullDirectionProperty = |
|
|
|
AvaloniaProperty.Register<RefreshVisualizer, PullDirection>(nameof(PullDirection), PullDirection.TopToBottom); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|