JDK-8352752 : Avoid showing instruction frame prematurely
  • Type: Bug
  • Component: client-libs
  • Affected Version: 22
  • Priority: P5
  • Status: Open
  • Resolution: Unresolved
  • Submitted: 2025-03-24
  • Updated: 2025-03-24
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.
Other
tbdUnresolved
Related Reports
Causes :  
Relates :  
Description
When a PanelCreator is used or one window is passed to PassFailJFrame, the method positionTestWindow is called:

positionTestWindow(dialog, builder.position);

Window window = builder.testWindows.get(0);
positionTestWindow(window, builder.position);

This call shows the instruction frame right away.

Later, showAllWindows() is called to display all the registered windows, which includes the instruction frame. Therefore showing the instruction could be deferred until all the windows are ready to be shown.