mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-01 07:48:37 +02:00
[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:
parent
2f29d00b73
commit
5fb7636f41
2 changed files with 14 additions and 2 deletions
|
@ -1123,7 +1123,7 @@ Item {
|
|||
}
|
||||
|
||||
Behavior on x {
|
||||
enabled: !nodeRepeater.ongoingDrag && !resizing
|
||||
enabled: !nodeRepeater.ongoingDrag && !resizing && !uigraph.animationsDisabled;
|
||||
NumberAnimation { duration: 100 }
|
||||
}
|
||||
Behavior on y {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue