From cadebe713d9534b33822745ea48670d682db366f Mon Sep 17 00:00:00 2001 From: santhosh Date: Fri, 2 Aug 2013 11:28:08 +0530 Subject: [PATCH] Fix for 48036 Change-Id: Iafbb0035b52ede45e9897c8af06addb7db756f06 Signed-off-by: santhosh --- src/GlAllListPanel.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/GlAllListPanel.cpp b/src/GlAllListPanel.cpp index 20175cf..beeefd6 100644 --- a/src/GlAllListPanel.cpp +++ b/src/GlAllListPanel.cpp @@ -90,6 +90,17 @@ AllListPanel::Refresh(void) pSceneManager->GoBackward(BackwardSceneTransition(IDSCN_ALBUM_LIST)); } + else + { + SceneManager* pSceneManager = SceneManager::GetInstance(); + TryReturnVoid(pSceneManager != null, "[%s] fail to get SceneManager", GetErrorMessage(GetLastResult())); + + FileListForm* pFileListForm = dynamic_cast(pSceneManager->GetCurrentScene()->GetForm()); + if (pFileListForm != null) + { + pFileListForm->SetMenuState(true); + } + } __pContentIconListView->UpdateList(); AppLogDebug("EXIT(%s)", GetErrorMessage(GetLastResult())); -- 2.7.4