From 77539866b52437b03c7369e3f25a0d8b5e94f795 Mon Sep 17 00:00:00 2001 From: Djeeberjr Date: Sun, 20 Feb 2022 14:22:54 +0100 Subject: [PATCH] fixed renderChildren on ReactiveUI --- src/lib/ui/ReactiveUI.hx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/ui/ReactiveUI.hx b/src/lib/ui/ReactiveUI.hx index 22d013b..fcdb024 100644 --- a/src/lib/ui/ReactiveUI.hx +++ b/src/lib/ui/ReactiveUI.hx @@ -73,6 +73,8 @@ class ReactiveUI { }); rtn.combine(childRender,writePoint); + + writePoint = {x: 0,y: writePoint.y + childRender.hight() }; } return rtn;