The LinearGradient won't draw properly if it's the fill of a Rectangle that has a non-integer y. Ex:
Rectangle {
y: 0.5
x: 0 width: 100 height: 100
fill: LinearGradient { ... }
}
this will draw a flat color instead of a gradient. If y is changed to be an integer such as 0 then the gradient will be drawn again.
Rectangle {
y: 0.5
x: 0 width: 100 height: 100
fill: LinearGradient { ... }
}
this will draw a flat color instead of a gradient. If y is changed to be an integer such as 0 then the gradient will be drawn again.
- duplicates
-
JDK-8107513 Gradients don't translate correctly w/ JDK6u12
-
- Closed
-
- relates to
-
JDK-8107513 Gradients don't translate correctly w/ JDK6u12
-
- Closed
-