Hello,
Could you review a fix for jdk9, please?
bug: https://bugs.openjdk.java.net/browse/JDK-8171949
webrev: http://cr.openjdk.java.net/~dmarkov/8171949/webrev.00/
Problem description:
Current implementation of CPlatformWindow.orderAboveSiblings() performs
ordering for iconified windows. That causes the following problem: if window’s
state set to ICONIFIED via setExtendedState() method, the window moves to
ICONIFIED state, but right after that it moves back to the previous state,
(i.e. the invocation of setExtendedState() does not have any effect).
Fix:
CPlatformWindow.orderAboveSiblings() should NOT perform ordering for the
windows which are already in ICONIFIED state or when iconify operation, (i.e
moving to ICONIFIED state is in progress).
Thanks,
Dmitry