aboutsummaryrefslogtreecommitdiff
path: root/src/macosx
diff options
context:
space:
mode:
authorAlexey Ushakov <Alexey.Ushakov@jetbrains.com>2017-05-11 19:32:08 +0300
committerAlexey Ushakov <Alexey.Ushakov@jetbrains.com>2017-05-11 20:00:16 +0300
commitfbfcc6cd19cbdaac7cbee93c89193d58e90d6614 (patch)
treef47557fcb8898d148d5a289058f2ced848443958 /src/macosx
parente5394572bfbf14d06e06d4d8275b5e38a7f3d1fd (diff)
downloadjdk8u_jdk-fbfcc6cd19cbdaac7cbee93c89193d58e90d6614.tar.gz
JRE-335 IDEA 2017.2 EAP quit unexcpectedlyjb8u152-b853
Revert "JRE-240 IDEA hangs regularly on MacBook Pro with Touch Bar" This reverts commit c96df0f2cf980a40e7884770a53633d4a92a3916.
Diffstat (limited to 'src/macosx')
-rw-r--r--src/macosx/classes/sun/lwawt/macosx/LWCToolkit.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macosx/classes/sun/lwawt/macosx/LWCToolkit.java b/src/macosx/classes/sun/lwawt/macosx/LWCToolkit.java
index 5dc466d725..654fbc343f 100644
--- a/src/macosx/classes/sun/lwawt/macosx/LWCToolkit.java
+++ b/src/macosx/classes/sun/lwawt/macosx/LWCToolkit.java
@@ -640,12 +640,12 @@ public final class LWCToolkit extends LWToolkit {
* Any selector invoked using ThreadUtilities performOnMainThread will be
* processed in doAWTRunLoop The InvocationEvent will call
* LWCToolkit.stopAWTRunLoop() when finished, which will stop our manual
- * runloop. Dispatch native events while in the loop
+ * runloop Does not dispatch native events while in the loop
*/
public static void invokeAndWait(Runnable runnable, Component component)
throws InvocationTargetException
{
- invokeAndWait(runnable, component, true);
+ invokeAndWait(runnable, component, false);
}
/**