mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 17:57:16 +02:00
[ui] GraphEditor: toggle node selected state on Ctrl+click
Closer to the standard behavior of the Ctrl modifier key for selection.
This commit is contained in:
parent
87c0cef605
commit
fc85999011
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue