Skip to content

Commit 55bc4ac

Browse files
committed
[ui] NodeActions: update position when nodes are moved
1 parent 9237eff commit 55bc4ac

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

meshroom/ui/qml/Controls/NodeActions.qml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,14 @@ Item {
106106
function onScaleChanged() { Qt.callLater(actionHeader.updatePosition) }
107107
}
108108

109+
// Update position when nodes are moved
110+
Connections {
111+
target: actionHeader.selectedNodeDelegate
112+
function onXChanged() { actionHeader.updatePosition() }
113+
function onYChanged() { actionHeader.updatePosition() }
114+
ignoreUnknownSignals: true
115+
}
116+
109117
//
110118
// ===== Manage buttons =====
111119
//

0 commit comments

Comments
 (0)