From 1c986457b5d21f38aae76838c702414c8bf76ac3 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Fri, 10 Sep 2010 22:45:12 +0000 Subject: [PATCH] back/win32: revert r31206 git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@31324 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 5 +++++ Source/win32/w32_activate.m | 7 +++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 296cf0f..f68a147 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-09-10 Eric Wasylishen + + * Source/win32/w32_activate.m: Revert the change to call + -[NSApp deactivate].. more investigation needed + 2010-08-30 Eric Wasylishen * Source/win32/WIN32Server.m: Only show taskbar buttons for windows diff --git a/Source/win32/w32_activate.m b/Source/win32/w32_activate.m index 3550556..9badc04 100644 --- a/Source/win32/w32_activate.m +++ b/Source/win32/w32_activate.m @@ -91,8 +91,11 @@ break; case FALSE: { - [NSApp deactivate]; - flags._eventHandled = YES; +// FIXME: We should deactivate the application, however the following +// causes problems. See "Re: Problem with recent change to w32_activate.m +// -- PLEASE REVERT" for details. +// [NSApp deactivate]; +// flags._eventHandled = YES; } break;