Hi,
I can not reproduce your issue. Could you elaborate little bit more. It would be perfect if you could show the exact code that shows the problem.
Item {
x: 200
y: 200
width: 200
height: 200
scale: 2
Rectangle {
border.color: "black"
border.width: 2
anchors.fill: parent
}
Rectangle {
id: item1
x: 10
width: 5
height: 100
color: "red"
Rectangle {
x: /*item1.x +*/ item1.width
width: 5
color: "green"
height: 100
}
}
}
This didn’t show any gaps. Do you have rotations on your items and/or are they Images?
↧








