From 74d723f88315f1300b49b3a09cb5eaa8a1a4b080 Mon Sep 17 00:00:00 2001 From: Himanshu Date: Wed, 26 Jun 2013 16:38:46 +0530 Subject: [PATCH] Fixed footer when launched from Contacts Change-Id: If7a21956612e557c01c6e0386dfe3023a39103a9 Signed-off-by: Himanshu --- src/GlFileListEditorForm.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/GlFileListEditorForm.cpp b/src/GlFileListEditorForm.cpp index 114a25f..4ab0574 100644 --- a/src/GlFileListEditorForm.cpp +++ b/src/GlFileListEditorForm.cpp @@ -168,10 +168,14 @@ FileListEditorForm::InitializeFooter(void) footerConfirm.SetText(ResourceManager::GetString(L"IDS_COM_SK_DONE")); pFooter->AddItem(footerConfirm); pFooter->SetItemEnabled(0, false); + pFooter->SetShowState(true); + pFooter->Invalidate(true); } else { pFooter->SetStyle(FOOTER_STYLE_SEGMENTED_TEXT); + pFooter->SetShowState(false); + pFooter->Invalidate(true); } SetFormBackEventListener(this); -- 2.7.4