Browse Source

Merge branch 'feature-devtools-inspect-popup' of https://github.com/pr8x/Avalonia into feature-devtools-inspect-popup

pull/6191/head
Luis von der Eltz 5 years ago
parent
commit
27ff9db99e
  1. 5
      src/Avalonia.Layout/ElementManager.cs

5
src/Avalonia.Layout/ElementManager.cs

@ -325,7 +325,10 @@ namespace Avalonia.Layout
break;
case NotifyCollectionChangedAction.Move:
throw new NotImplementedException();
int size = args.OldItems != null ? args.OldItems.Count : 1;
OnItemsRemoved(args.OldStartingIndex, size);
OnItemsAdded(args.NewStartingIndex, size);
break;
}
}
}

Loading…
Cancel
Save