diff --git a/src/java.desktop/unix/classes/sun/awt/wl/WLComponentPeer.java b/src/java.desktop/unix/classes/sun/awt/wl/WLComponentPeer.java index bdc8c6e7c74f..ae45f71e1c7a 100644 --- a/src/java.desktop/unix/classes/sun/awt/wl/WLComponentPeer.java +++ b/src/java.desktop/unix/classes/sun/awt/wl/WLComponentPeer.java @@ -236,14 +236,14 @@ public boolean requestFocus(Component lightweightChild, boolean temporary, if (WLKeyboardFocusManagerPeer. processSynchronousLightweightTransfer(target, lightweightChild, temporary, - focusedWindowChangeAllowed, time)) { + false, time)) { return true; } Window nativelyFocusableWindow = getNativelyFocusableOwnerOrSelf(target); int result = WLKeyboardFocusManagerPeer. shouldNativelyFocusHeavyweight(nativelyFocusableWindow, lightweightChild, - temporary, focusedWindowChangeAllowed, + temporary, false, time, cause, true); switch (result) {