From 226b5be15524b9b1d0fbff02f8e608cc2bd8599c Mon Sep 17 00:00:00 2001 From: "keonpyo.kong" Date: Sat, 13 Jul 2013 15:53:54 +0900 Subject: [PATCH] Modify IsActivationEnabled Change-Id: Ie1f109a43c75957b77555ec731a22f099ed17598 Signed-off-by: keonpyo.kong --- src/ui/FUi_Window.cpp | 2 +- src/ui/inc/FUi_FocusManagerImpl.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/FUi_Window.cpp b/src/ui/FUi_Window.cpp index c1a53f0..1cd9442 100644 --- a/src/ui/FUi_Window.cpp +++ b/src/ui/FUi_Window.cpp @@ -410,7 +410,7 @@ _Window::SetActivationEnabled(bool enable) bool _Window::IsActivationEnabled(void) { - if (__type == _WINDOW_TYPE_VE) + if (__type == _WINDOW_TYPE_VE || IsSystemWindow()) { return IsFocusable(); } diff --git a/src/ui/inc/FUi_FocusManagerImpl.h b/src/ui/inc/FUi_FocusManagerImpl.h index ecc2e2e..60ffd63 100644 --- a/src/ui/inc/FUi_FocusManagerImpl.h +++ b/src/ui/inc/FUi_FocusManagerImpl.h @@ -96,6 +96,7 @@ public: static void ReleaseInstance(void); bool IsFocusModeStateEnabled(void) const; + bool IsForwardDirection(void) const; private: /** @@ -132,7 +133,6 @@ private: bool IsFocusable(_Control* pControl) const; _Control* FindTraversalControlFromChild(_Control* pControl); bool IsFocusControlListControl(_Control* pControl) const; - bool IsForwardDirection(void) const; private: static _FocusManagerImpl* __pInstance; -- 2.7.4