Skip to content

Commit

Permalink
Updated ToggleSplitButton.IsCheckedProperty definition to be on a sin…
Browse files Browse the repository at this point in the history
…gle line.
  • Loading branch information
billhenn committed Aug 18, 2023
1 parent 09250ec commit 3dd62bf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Avalonia.Controls/SplitButton/ToggleSplitButton.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ public event EventHandler<RoutedEventArgs>? IsCheckedChanged
/// Defines the <see cref="IsChecked"/> property.
/// </summary>
public static readonly StyledProperty<bool> IsCheckedProperty =
AvaloniaProperty.Register<ToggleSplitButton, bool>(nameof(IsChecked), false,
defaultBindingMode: BindingMode.TwoWay);
AvaloniaProperty.Register<ToggleSplitButton, bool>(nameof(IsChecked), false, defaultBindingMode: BindingMode.TwoWay);

/// <summary>
/// Initializes a new instance of the <see cref="ToggleSplitButton"/> class.
Expand Down

0 comments on commit 3dd62bf

Please sign in to comment.