JDK-8175952 : Release Note: Introduced a new window ordering model
  • Type: Sub-task
  • Component: client-libs
  • Sub-Component: java.awt
  • Affected Version: 8u112,8u131
  • Priority: P4
  • Status: Closed
  • Resolution: Delivered
  • Submitted: 2017-02-27
  • Updated: 2021-11-30
  • Resolved: 2017-02-27
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 8
8u121Resolved
Description
On the OS X platform, the AWT framework used native services to implement a parent-child relationship for windows. That caused some negative visual effects especially in multi-monitor environments. To get rid of disadvantages of such an approach, the new window ordering model, which is fully implemented at JDK layer, was introduced. Its main principles are listed below:
 - A window should be placed above its nearest parent window.
 - If a window has several child windows, all child windows should be located at the same layer and the window from the active window chain should be ordered above its siblings.
 - Ordering should not be performed for a window that is in an iconified state or when the transition to iconified state is in progress.

These rules are applied to every frame or dialog from the window hierarchy which contains the currently focused window.