parent
15927b0705
commit
c155c9c9d0
|
@ -25,6 +25,7 @@ Rectangle {
|
||||||
color: 'transparent'
|
color: 'transparent'
|
||||||
|
|
||||||
required property string name
|
required property string name
|
||||||
|
property string objName
|
||||||
required property bool isVisual
|
required property bool isVisual
|
||||||
property bool showNonVisual: false
|
property bool showNonVisual: false
|
||||||
property bool forceSelect: false
|
property bool forceSelect: false
|
||||||
|
@ -136,6 +137,10 @@ Rectangle {
|
||||||
text: root.name
|
text: root.name
|
||||||
font.bold: true
|
font.bold: true
|
||||||
}
|
}
|
||||||
|
Label {
|
||||||
|
text: `objectName: ${root.objName}`
|
||||||
|
visible: root.objName
|
||||||
|
}
|
||||||
Label {
|
Label {
|
||||||
text: `x: ${root.x}, y: ${root.y}`
|
text: `x: ${root.x}, y: ${root.y}`
|
||||||
}
|
}
|
||||||
|
|
|
@ -76,6 +76,7 @@ Item {
|
||||||
|
|
||||||
const props = {
|
const props = {
|
||||||
index, name, x, y,
|
index, name, x, y,
|
||||||
|
objName: item.objectName,
|
||||||
width: item.width,
|
width: item.width,
|
||||||
height: item.height,
|
height: item.height,
|
||||||
z: item.z,
|
z: item.z,
|
||||||
|
|
Loading…
Reference in New Issue