Skip to content

Commit

Permalink
Backport AvaloniaUI#9528
Browse files Browse the repository at this point in the history
  • Loading branch information
timunie committed Nov 25, 2022
1 parent ffe74ce commit 734e165
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 734e165

Please sign in to comment.