From fbb61db9fb6bd4c751e900be409492a445bebcb5 Mon Sep 17 00:00:00 2001 From: Choi Munseok Date: Fri, 12 Jul 2013 20:40:52 +0900 Subject: [PATCH] Fixed to add the AllWindowList Change-Id: Ic0bb65d445dc6023d2c04a93b81bba17e802c802 Signed-off-by: Choi Munseok --- src/ui/FUi_ControlManager.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ui/FUi_ControlManager.cpp b/src/ui/FUi_ControlManager.cpp index 659a71b..15ddaa1 100644 --- a/src/ui/FUi_ControlManager.cpp +++ b/src/ui/FUi_ControlManager.cpp @@ -934,7 +934,11 @@ _ControlManager::AttachWindow(_Window& window) _DisplayManager::GetInstance()->RegisterRoot(*pRootVE); } } - __pAllWindowList->Add(&window); + + if (__pAllWindowList->Contains(&window) == false) + { + __pAllWindowList->Add(&window); + } return __pWindowList->Add(&window); } -- 2.7.4