From 621902b3e853329c6440d4ab954790c5baddcfbe Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 22 Mar 2026 19:47:18 -0400 Subject: [PATCH] fix: correct reference to parent page in keyboard toggle event --- manager/display.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/display.lua b/manager/display.lua index 10f45fe..40e4ee9 100644 --- a/manager/display.lua +++ b/manager/display.lua @@ -287,7 +287,7 @@ local function buildMainPage() eventHandler = function(self, event) if event.type == 'mouse_click' then showKeyboard = not showKeyboard - local page = self:getPage() + local page = self.parent if showKeyboard then UI.Window.enable(page.keyboard) page.keyboard:draw()