[ui] Graph: Using Grouped UI Graph Modification to disable animation for qml elements

Used graph's disabledAnimation flag to halt the animations when a backdrop node is resized during an undo.
This commit is contained in:
waaake 2025-01-08 17:51:21 +05:30
parent 2f29d00b73
commit 5fb7636f41
2 changed files with 14 additions and 2 deletions

View file

@ -1123,7 +1123,7 @@ Item {
}
Behavior on x {
enabled: !nodeRepeater.ongoingDrag && !resizing
enabled: !nodeRepeater.ongoingDrag && !resizing && !uigraph.animationsDisabled;
NumberAnimation { duration: 100 }
}
Behavior on y {