From e6fb205e999cd93b9a47380e5ff70760e0a985f9 Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Fri, 23 Dec 2022 22:11:08 +0530 Subject: [PATCH] attempt fix clipping and fix onscreen text --- src/gui/GuiTextListCtrl.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/GuiTextListCtrl.hx b/src/gui/GuiTextListCtrl.hx index 38fef118..bc030f3f 100644 --- a/src/gui/GuiTextListCtrl.hx +++ b/src/gui/GuiTextListCtrl.hx @@ -103,7 +103,7 @@ class GuiTextListCtrl extends GuiControl { this.flow.maxHeight = cast htr.extent.y; this.flow.multiline = true; this.flow.layout = Stack; - this.flow.overflow = FlowOverflow.Limit; + this.flow.overflow = FlowOverflow.Hidden; if (scene2d.contains(this.flow)) scene2d.removeChild(this.flow);