From 4dfa00e97f6cb4a861e72ffb5212329c6914df1c Mon Sep 17 00:00:00 2001 From: Nomango <569629550@qq.com> Date: Fri, 8 Dec 2017 19:57:34 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AA=97=E5=8F=A3=E5=A4=B1=E5=8E=BB=E7=84=A6?= =?UTF-8?q?=E7=82=B9=E6=97=B6=E4=B8=8D=E5=86=8D=E8=87=AA=E5=8A=A8=E6=9A=82?= =?UTF-8?q?=E5=81=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Easy2D/Base/EApp.cpp | 4 ++-- Easy2D/Base/EScene.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Easy2D/Base/EApp.cpp b/Easy2D/Base/EApp.cpp index f69e1dd6..2914ef90 100644 --- a/Easy2D/Base/EApp.cpp +++ b/Easy2D/Base/EApp.cpp @@ -281,12 +281,12 @@ void e2d::EApp::showConsole(bool show /* = true */) bool e2d::EApp::onActivate() { - return true; + return false; } bool e2d::EApp::onInactive() { - return true; + return false; } bool e2d::EApp::onCloseWindow() diff --git a/Easy2D/Base/EScene.cpp b/Easy2D/Base/EScene.cpp index 7e1d9eea..052e20d5 100644 --- a/Easy2D/Base/EScene.cpp +++ b/Easy2D/Base/EScene.cpp @@ -34,12 +34,12 @@ void e2d::EScene::onExit() bool e2d::EScene::onActivate() { - return true; + return false; } bool e2d::EScene::onInactive() { - return true; + return false; } bool e2d::EScene::onCloseWindow()