From 02ab2b473cfad725f42a67699a7afedc90c512e3 Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Wed, 3 Aug 2011 07:08:28 +0000 Subject: [PATCH] Debug print removed. --- intern/ghost/intern/GHOST_SystemWin32.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/intern/ghost/intern/GHOST_SystemWin32.cpp b/intern/ghost/intern/GHOST_SystemWin32.cpp index c985c6dd0a6..bbf8efeaee3 100644 --- a/intern/ghost/intern/GHOST_SystemWin32.cpp +++ b/intern/ghost/intern/GHOST_SystemWin32.cpp @@ -730,11 +730,9 @@ GHOST_Event* GHOST_SystemWin32::processWindowEvent(GHOST_TEventType type, GHOST_ { GHOST_System* system = (GHOST_System*)getSystem(); - if (type == GHOST_kEventWindowActivate) - { - puts("activating window"); + if (type == GHOST_kEventWindowActivate) { system->getWindowManager()->setActiveWindow(window); - } + } return new GHOST_Event(system->getMilliSeconds(), type, window); }