From 869b1208c5725696e57e2a5807cb7d7536a195be Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Tue, 16 Jul 2024 00:24:22 +0530 Subject: [PATCH] compile fix --- src/gui/Canvas.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/Canvas.hx b/src/gui/Canvas.hx index f6188137..cb304b43 100644 --- a/src/gui/Canvas.hx +++ b/src/gui/Canvas.hx @@ -34,7 +34,7 @@ class Canvas extends GuiControl { public function pushDialog(content:GuiControl) { this.content.onDormant(scene2d); this.addChild(content); - content.render(scene2d, this._flow); + content.render(scene2d); } public function popDialog(content:GuiControl, dispose:Bool = true) {