From 9c3fd3b6b218de51177bef7d481e411e365b6ef3 Mon Sep 17 00:00:00 2001 From: jpbruyere Date: Fri, 19 Aug 2016 09:57:17 +0200 Subject: [PATCH] resolve bug popper content childs not arranged if top container is Stack --- src/Interface.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Interface.cs b/src/Interface.cs index 0d97685e..fc977fc4 100644 --- a/src/Interface.cs +++ b/src/Interface.cs @@ -467,7 +467,7 @@ namespace Crow g.Parent = this; GraphicTree.Insert (0, g); g.RegisteredLayoutings = LayoutingType.None; - g.RegisterForLayouting (LayoutingType.Sizing); + g.RegisterForLayouting (LayoutingType.Sizing | LayoutingType.ArrangeChildren); } public void DeleteWidget(GraphicObject g) { -- 2.47.3