Skip to content

Commit

Permalink
Merge pull request AvaloniaUI#9538 from timunie/backport/GH_9528
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkatz6 committed Nov 25, 2022
2 parents ffe74ce + 734e165 commit 719d89f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Avalonia.Controls.DataGrid/DataGrid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1254,7 +1254,7 @@ private void OnCanUserResizeColumnsChanged(AvaloniaPropertyChangedEventArgs e)
public event EventHandler<SelectionChangedEventArgs> SelectionChanged
{
add { AddHandler(SelectionChangedEvent, value); }
remove { AddHandler(SelectionChangedEvent, value); }
remove { RemoveHandler(SelectionChangedEvent, value); }
}

/// <summary>
Expand Down

0 comments on commit 719d89f

Please sign in to comment.