From 6c32bf8ddfd209b16347dd1f65913a8d8776b33b Mon Sep 17 00:00:00 2001 From: Steven Kirk Date: Tue, 3 Feb 2015 00:12:58 +0100 Subject: [PATCH] Get logical children from the right place. --- Perspex.Controls/ItemsControl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Perspex.Controls/ItemsControl.cs b/Perspex.Controls/ItemsControl.cs index 9bf3e8d948..0b087e0795 100644 --- a/Perspex.Controls/ItemsControl.cs +++ b/Perspex.Controls/ItemsControl.cs @@ -87,7 +87,7 @@ namespace Perspex.Controls if (this.presenter != null) { - this.logicalChildren.Source = ((IVisual)this.presenter).VisualChildren; + this.logicalChildren.Source = ((IVisual)this.presenter.Panel).VisualChildren; } }