From fc8599901180ddaec752af6f372df7d113d0dce4 Mon Sep 17 00:00:00 2001 From: Yann Lanthony Date: Mon, 9 Dec 2024 10:18:48 +0100 Subject: [PATCH] [ui] GraphEditor: toggle node selected state on Ctrl+click Closer to the standard behavior of the Ctrl modifier key for selection. --- meshroom/ui/qml/GraphEditor/GraphEditor.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshroom/ui/qml/GraphEditor/GraphEditor.qml b/meshroom/ui/qml/GraphEditor/GraphEditor.qml index b2e77079..8ff01d4d 100755 --- a/meshroom/ui/qml/GraphEditor/GraphEditor.qml +++ b/meshroom/ui/qml/GraphEditor/GraphEditor.qml @@ -861,7 +861,7 @@ Item { selectionMode = ItemSelectionModel.Select; } if(mouse.modifiers & Qt.ControlModifier) { - selectionMode = ItemSelectionModel.Deselect; + selectionMode = ItemSelectionModel.Toggle; } if(mouse.modifiers & Qt.AltModifier) { uigraph.selectFollowing(node);