From aa87be5f96cf595e714c0cb12a70b35b160ed339 Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Thu, 26 Jul 2012 19:01:59 +0200 Subject: [PATCH] Typo --- .../platform-impl/src/com/intellij/ide/IdeEventQueue.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/platform/platform-impl/src/com/intellij/ide/IdeEventQueue.java b/platform/platform-impl/src/com/intellij/ide/IdeEventQueue.java index 2f46d11664ba..db529ddcdad3 100644 --- a/platform/platform-impl/src/com/intellij/ide/IdeEventQueue.java +++ b/platform/platform-impl/src/com/intellij/ide/IdeEventQueue.java @@ -421,7 +421,7 @@ public class IdeEventQueue extends EventQueue { _dispatchEvent(e, false); } - public void _dispatchEvent(AWTEvent e, boolean typeaheadFlushing) { + public void _dispatchEvent(AWTEvent e, boolean typeAheadFlushing) { if (e.getID() == MouseEvent.MOUSE_DRAGGED) { DnDManagerImpl dndManager = (DnDManagerImpl)DnDManager.getInstance(); if (dndManager != null) { @@ -431,10 +431,9 @@ public class IdeEventQueue extends EventQueue { myEventCount++; - if (processAppActivationEvents(e)) return; - if (!typeaheadFlushing) { + if (!typeAheadFlushing) { fixStickyFocusedComponents(e); } @@ -450,7 +449,7 @@ public class IdeEventQueue extends EventQueue { } } - if (!typeaheadFlushing && typeAheadDispatchToFocusManager(e)) { + if (!typeAheadFlushing && typeAheadDispatchToFocusManager(e)) { return; }