From: santhosh Date: Fri, 2 Aug 2013 05:58:08 +0000 (+0530) Subject: Fix for 48036 X-Git-Tag: 2.2_release~4 X-Git-Url: http://review.tizen.org/git/?p=apps%2Fosp%2FGallery.git;a=commitdiff_plain;h=cadebe713d9534b33822745ea48670d682db366f Fix for 48036 Change-Id: Iafbb0035b52ede45e9897c8af06addb7db756f06 Signed-off-by: santhosh --- 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()));