aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpchelko <none@none>2013-11-22 10:48:00 +0400
committerpchelko <none@none>2013-11-22 10:48:00 +0400
commit613fe3c31ceb5ac8cdedc9642c616cbfdafa4767 (patch)
treee665a430c0b96ff55e0c92556f0035c121c36d62 /src
parent3980013580a5bfccd3cba37aa504c65d6a9dbb29 (diff)
8028485: [macosx] java/awt/Mouse/EnterExitEvents/FullscreenEnterEventTest.java fails
Reviewed-by: anthony, serb
Diffstat (limited to 'src')
-rw-r--r--src/macosx/native/sun/awt/AWTWindow.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macosx/native/sun/awt/AWTWindow.m b/src/macosx/native/sun/awt/AWTWindow.m
index 687fa6b4d..dcda6c3f9 100644
--- a/src/macosx/native/sun/awt/AWTWindow.m
+++ b/src/macosx/native/sun/awt/AWTWindow.m
@@ -468,8 +468,6 @@ AWT_ASSERT_APPKIT_THREAD;
// TODO: create generic AWT assert
}
- [AWTWindow synthesizeMouseEnteredExitedEventsForAllWindows];
-
NSRect frame = ConvertNSScreenRect(env, [self.nsWindow frame]);
static JNF_MEMBER_CACHE(jm_deliverMoveResizeEvent, jc_CPlatformWindow, "deliverMoveResizeEvent", "(IIIIZ)V");
@@ -480,6 +478,8 @@ AWT_ASSERT_APPKIT_THREAD;
(jint)frame.size.height,
(jboolean)[self.nsWindow inLiveResize]);
(*env)->DeleteLocalRef(env, platformWindow);
+
+ [AWTWindow synthesizeMouseEnteredExitedEventsForAllWindows];
}
- (void)windowDidMove:(NSNotification *)notification {