From b402979b5de3a90d8705dbe2f45ac1f801226c5e Mon Sep 17 00:00:00 2001 From: Bogdan Gheorghe Date: Thu, 16 May 2013 11:38:32 -0400 Subject: Bug 358376 - Provide ability to handle reopen-events (user clicks dock icon for running application) --- .../Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java index 230fc2b2aa..c8b8c7c72d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java @@ -5274,7 +5274,9 @@ static long /*int*/ applicationProc(long /*int*/ id, long /*int*/ sel, long /*in } new NSApplication(arg0).replyToOpenOrPrint(OS.NSApplicationDelegateReplySuccess); } else if (sel == OS.sel_applicationShouldHandleReopen_hasVisibleWindows_) { - return 1; + final Event event = new Event(); + display.sendEvent(SWT.Activate, event); + return event.doit ? 1 : 0; } return 0; } -- cgit