We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
userName
userColor
1 parent 3d1e28a commit 333342cCopy full SHA for 333342c
meshroom/ui/qml/Shapes/Editor/Items/Utils/ItemHeader.qml
@@ -217,7 +217,7 @@ Pane {
217
title: "Edit " + model.label + " color"
218
selectedColor: model.userColor
219
onAccepted: {
220
- model.userColor = selectedColor
+ _reconstruction.setAttribute(model.childAttribute("userColor"), selectedColor.toString())
221
close()
222
}
223
onRejected: close()
@@ -264,7 +264,7 @@ Pane {
264
265
enabled: isAttributeEnabled && model.root && (model.root.type === "ShapeList")
266
onEditingFinished: {
267
- model.userName = text
+ _reconstruction.setAttribute(model.childAttribute("userName"), text)
268
focus = false
269
270
0 commit comments