From cf3e2b3573f8bc7cde5e960e701b7c7c9143e714 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Vital?= Date: Wed, 2 Nov 2022 15:25:24 +0100 Subject: [PATCH] [ui] prevent default tab behavior (change focus to next element) --- meshroom/ui/qml/GraphEditor/GraphEditor.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/meshroom/ui/qml/GraphEditor/GraphEditor.qml b/meshroom/ui/qml/GraphEditor/GraphEditor.qml index 5d846f5c..1a983527 100755 --- a/meshroom/ui/qml/GraphEditor/GraphEditor.qml +++ b/meshroom/ui/qml/GraphEditor/GraphEditor.qml @@ -139,6 +139,7 @@ Item { pasteNodes(); } else if (event.key == Qt.Key_Tab) { + event.accepted = true; newNodeMenu.spawnPosition = mouseArea.mapToItem(draggable, mouseArea.mouseX, mouseArea.mouseY); newNodeMenu.popup(); }