From 275bf714f168beefe01702ccb4ef461d91d6bfb9 Mon Sep 17 00:00:00 2001 From: "van Veen, Stephan" Date: Fri, 14 Nov 2025 08:55:58 +0100 Subject: [PATCH] fix: inputPanel is not defined warning --- src/qml/InputPanel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/InputPanel.qml b/src/qml/InputPanel.qml index 2dca71f..89b9d22 100644 --- a/src/qml/InputPanel.qml +++ b/src/qml/InputPanel.qml @@ -22,7 +22,7 @@ Item { property alias emptySpaceBar: layoutLoader.emptySpaceBar /*! \internal */ - readonly property bool __isRootItem: inputPanel.parent !== null && inputPanel.parent.parent === null + readonly property bool __isRootItem: root.parent !== null && root.parent.parent === null function showKeyPopup(keyButton) { keyPopup.popup(keyButton, root);