Details
-
Type:
Task
-
Status: Closed (View Workflow)
-
Priority:
Blocker
-
Resolution: Done
-
Affects Version/s: None
-
Fix Version/s: None
-
Labels:None
-
Story Points:2
-
Epic Link:
-
Sprint:Fall 1 2022 Aug 15
Description
During testing, Karthik Raveendran observed that IGB built with Azul's JDK showed a bad defect: the tabbed panels froze up.
See his comment in linked ticket IGBF-3113 for details. Here is a link to his comment. (There are other 70 comments, so use the link to save time.)
For this task, investigate why this occurred and determine the cause.
Note that IGBF-3113 has been merged to master. If further testing is unable to replicate the issue with the tabbed panels freezing, then this issue can be closed.
Attachments
Issue Links
- relates to
-
IGBF-3113 Make new Docker image with version 9 Install4J and Zulu JDKs to build IGB
-
- Closed
-
The error seems to occur in javax.swing.plaf.basic.BasicTabbedPaneUI which appears to be in JTabbedTrayPane which is a subclass of JSplitPane. But error is on listeners that is added to JRPTabbedPane which is a subclass of JTabbedPane but BasicTabbedPaneUI is a subclass of TabbedPaneUI which is retrieved in the getUI() function of JTabbedPane. I believe when this function returns a null it throws that error and how it gets a null value is still unclear