JDK-8224149 : JColorChoser doesn't update the color diagram when the selection is changed by keys.
  • Type: Bug
  • Component: client-libs
  • Sub-Component: javax.swing
  • Affected Version: 8,11,12,13
  • Priority: P3
  • Status: Closed
  • Resolution: Duplicate
  • OS: generic
  • Submitted: 2019-05-17
  • Updated: 2020-04-02
  • Resolved: 2020-04-02
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 14
14Resolved
Related Reports
Duplicate :  
Description
1. Run SwingSet2. 
2. Choose JColorChooserDemo / Background / HSV 
3. Change radio selection using UP/DOWN keys
Expected: the diagram on the left is updated accordingly
Actual: the diagram corresponds to the initial selection and only can be changed by mouse click on the radio
Comments
While navigating JRadioButtons via keys in JColorChooser, JRadioButtons doesn't emit selection change event and so action listeners for ColorPanel doesn't gets called. with the changes of JDK-8226892 JRadioButtons emit events and Color diagram updates correctly.
05-12-2019

Fix: Listen for item selection event.
20-05-2019

The ColorPanel only reacts on the button PRESSED event while more appropriate way for radio group is listen for the selection change.
17-05-2019