- 
    Bug 
- 
    Resolution: Done
- 
    P3: Somewhat important 
- 
    4.8.x
- 
    None
- 
    Mac OS 10.5/Cocoa
- 
        b1c128415894686d61b3d568e5117ba96dd4c74e
The following example shows a rounded and smoothed rectangle when a gradient is used. But this cannot be correct?
It does not help to set smooth: false either.
----------
import Qt 4.7
Rectangle {
    width:300; height:200
    Rectangle {
        x: 50; y:50
        width: 50
        height: 50
        gradient: Gradient { 
            GradientStop 
GradientStop
{position:1.0; color:"#000000" }        }
        border.width: 4
        smooth: false
    }
}