From 6d386197bdbb49f18b0497f93b8a6d265f7d3c5f Mon Sep 17 00:00:00 2001 From: Jacek Olszak Date: Sat, 23 Nov 2024 18:39:21 +0100 Subject: [PATCH] [bugfix] Text output is not properly displayed when scrollbar is visible --- gui/text_output.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/text_output.lua b/gui/text_output.lua index 5bff419..c9d6a7f 100644 --- a/gui/text_output.lua +++ b/gui/text_output.lua @@ -63,5 +63,7 @@ function attach_text_output(parent, el) text_output.y = 0 end + function el:draw() end + return el end