diff --git a/src/Avalonia.Controls/Presenters/ItemVirtualizerSimple.cs b/src/Avalonia.Controls/Presenters/ItemVirtualizerSimple.cs index f67a46308e..d25dcdde61 100644 --- a/src/Avalonia.Controls/Presenters/ItemVirtualizerSimple.cs +++ b/src/Avalonia.Controls/Presenters/ItemVirtualizerSimple.cs @@ -23,10 +23,8 @@ namespace Avalonia.Controls.Presenters public ItemVirtualizerSimple(ItemsPresenter owner) : base(owner) { - if (Items != null && VirtualizingPanel != null) - { - CreateAndRemoveContainers(); - } + // Don't need to add children here as UpdateControls should be called by the panel + // measure/arrange. } ///