Fixed issue 52825
authorHimanshu <himanshu.t@samsung.com>
Thu, 19 Sep 2013 09:03:34 +0000 (14:33 +0530)
committerHimanshu <himanshu.t@samsung.com>
Thu, 19 Sep 2013 09:07:29 +0000 (14:37 +0530)
Change-Id: I444e932ec98ee3e4cad800ac5ffb243089e34dd9
Signed-off-by: Himanshu <himanshu.t@samsung.com>
src/GlImageListEditorPanel.cpp
src/GlRadioCustomItem.cpp

index 5a02f5a..92efa70 100644 (file)
@@ -460,6 +460,19 @@ ImageListEditorPanel::OnSceneActivatedN(const SceneId& previousSceneId,
                __itemCount = __pPresentationModel->GetCurrentAlbumContentInfoCount();
                __pContentIconListView->RequestRedraw(true);
        }
+
+       String titleText = __pPresentationModel->GetCurrentAlbumName();
+
+       if (titleText == ALL_ALBUMS_REAL_NAME)
+       {
+               String text = ResourceManager::GetString(L"IDS_MEDIABR_BODY_ALL_ALBUMS");
+               __pFileListEditorForm->SetTitleText(text);
+       }
+       else
+       {
+               __pFileListEditorForm->SetTitleText(titleText);
+       }
+
        AppLogDebug("EXIT(%s)", GetErrorMessage(GetLastResult()));
 }
 
index b2f6da0..383ad2e 100644 (file)
@@ -76,7 +76,7 @@ RadioCustomItem::Make(int fontSize)
        Color pressedTextColor = CUSTOM_COLOR_LISTVIEW_TEXT;
 
        AppLogDebug("RadioCustomItem::the text is %ls",__text.GetPointer());
-       r = AddElement(Rectangle(16, 5, __width - 60 - 16, __height), IDA_FORMAT_STRING, __text, fontSize, textColor, textColor, textColor, true);
+       r = AddElement(Rectangle(16, 5, __width - 75 - 16, __height), IDA_FORMAT_STRING, __text, fontSize, textColor, textColor, textColor, true);
        TryCatch(!IsFailed(r),,"RadioCustomItem::the value is %s",GetErrorMessage(r));
 
        CATCH: