From 73cdd1fe6296a8d13f5388dd7d90f470a9872949 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 4 Oct 2024 16:00:23 +0200 Subject: [PATCH] Draw root element on renderDefault --- itemcontroller.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 082e080..d9219b4 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -139,6 +139,8 @@ local function renderDefault(state, rootElement) if not handled then os.queueEvent(table.unpack(event)) end + + rootElement:draw() end local PAGES = { @@ -197,6 +199,6 @@ while not CONTROLLER_STATE.exit do CONTROLLER_STATE.currentPage = CONTROLLER_STATE.nextPage CONTROLLER_STATE.nextPage = nil end - + sleep(0) end \ No newline at end of file