Browse Source
Merge pull request #4444 from AvaloniaUI/fixes/3437-arg-ordering
Fix incorrect argument ordering.
pull/4478/head
Steven Kirk
6 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/Repeater/ItemsRepeaterElementIndexChangedEventArgs.cs
|
|
|
@ -34,7 +34,7 @@ namespace Avalonia.Controls |
|
|
|
/// </summary>
|
|
|
|
public int OldIndex { get; private set; } |
|
|
|
|
|
|
|
internal void Update(IControl element, int newIndex, int oldIndex) |
|
|
|
internal void Update(IControl element, int oldIndex, int newIndex) |
|
|
|
{ |
|
|
|
Element = element; |
|
|
|
NewIndex = newIndex; |
|
|
|
|