From ebc1d09c21737867295fa02259073c8f98830709 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ritzl?= Date: Thu, 1 Aug 2019 06:16:54 +0200 Subject: [PATCH] Wrong logging of input focus actions --- monarch/monarch.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monarch/monarch.lua b/monarch/monarch.lua index 8eeb957..034d966 100644 --- a/monarch/monarch.lua +++ b/monarch/monarch.lua @@ -225,7 +225,7 @@ function M.unregister(id) end local function acquire_input(screen) - log("change_context()", screen.id) + log("acquire_input()", screen.id) if not screen.input then if screen.proxy then msg.post(screen.script, ACQUIRE_INPUT_FOCUS) @@ -239,7 +239,7 @@ local function acquire_input(screen) end local function release_input(screen) - log("change_context()", screen.id) + log("release_input()", screen.id) if screen.input then if screen.proxy then msg.post(screen.script, RELEASE_INPUT_FOCUS)