-
Bug
-
Resolution: Fixed
-
P2
-
dr2
-
b26
-
x86
-
windows_xp
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2165090 | 7 | Dmitri Trembovetski | P2 | Resolved | Fixed | b33 |
When I rotate a Combobox and click on it to view its drop down, it appears black. Same is true for a rotated List.
This appears to be regression with the Nimbus L&F being set as default.
This is seen with 6u10 b14 on a WinXP Sp2 with the latest SDK build249.
Testcase and snapshot attached for reference.
When a clip is applied on a ComponentView with a List as component, portion of the List within the clip appears black. Reproducible with build 258. Run the below code to reproduce:
import javafx.gui.*;
Frame {
content: Canvas {
content: [Group {
content: [Circle {
centerX: 0
centerY: 0
radius: 105
fill: Color.RED
}]
}, Group {
clip: Circle {
centerX: 0
centerY: 0
radius: 105
}
content: [ComponentView {
component: List {
items: for (i in [1..9]) { ListItem { text: "ListItem{i}" } }
}
translateX: 50
translateY: 50
}, ComponentView {
component: Button {
text: "Click Me"
}
translateX: 50
translateY: 15
}]
}]
}
width: 300
height: 300
visible: true
};
This appears to be regression with the Nimbus L&F being set as default.
This is seen with 6u10 b14 on a WinXP Sp2 with the latest SDK build249.
Testcase and snapshot attached for reference.
When a clip is applied on a ComponentView with a List as component, portion of the List within the clip appears black. Reproducible with build 258. Run the below code to reproduce:
import javafx.gui.*;
Frame {
content: Canvas {
content: [Group {
content: [Circle {
centerX: 0
centerY: 0
radius: 105
fill: Color.RED
}]
}, Group {
clip: Circle {
centerX: 0
centerY: 0
radius: 105
}
content: [ComponentView {
component: List {
items: for (i in [1..9]) { ListItem { text: "ListItem{i}" } }
}
translateX: 50
translateY: 50
}, ComponentView {
component: Button {
text: "Click Me"
}
translateX: 50
translateY: 15
}]
}]
}
width: 300
height: 300
visible: true
};
- backported by
-
JDK-2165090 Nimbus L&F: Rotated Combobox dropdown and List causes appear black
- Resolved
- relates to
-
JDK-6725214 D3D: forward-port the new pipeline from 6u10
- Closed
-
JDK-6530420 remove unnecessary fields in Color class
- Closed