-
Bug
-
Resolution: Done
-
P4: Low
-
4.7.2
-
None
-
Reproduced on Win XP
-
03ff62841c5dae85fde40982a65980a91c5f3109
Only the top rectangle has rounded ends:
import QtQuick 1.0 Rectangle { width: 300 height: 300 Column { anchors.centerIn: parent Rectangle { color: "blue" width: 100 height: 20 radius: 10 } Rectangle { color: "blue" width: -100 height: 20 radius: 10 } } }