From 36842ffb42e38ae6cc9cc7a4d027b16f51f6d5af Mon Sep 17 00:00:00 2001 From: Aurore LAFAURIE Date: Fri, 30 Aug 2024 14:24:34 +0200 Subject: [PATCH] [ui] Prevent modification of iterations while expanded for loop --- meshroom/ui/qml/GraphEditor/GraphEditor.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meshroom/ui/qml/GraphEditor/GraphEditor.qml b/meshroom/ui/qml/GraphEditor/GraphEditor.qml index b8cd0a3428a..dc3f4124181 100755 --- a/meshroom/ui/qml/GraphEditor/GraphEditor.qml +++ b/meshroom/ui/qml/GraphEditor/GraphEditor.qml @@ -394,6 +394,8 @@ Item { tooltipText: "Iterations" visible: edgeMenu.currentEdge && edgeMenu.forLoop + enabled: expandButton.canExpand + property var listAttr: edgeMenu.currentEdge ? edgeMenu.currentEdge.src.root : null Connections {