Changed popup header alignment to left
authorchitta ranjan <chitta.rs@samsung.com>
Fri, 19 Apr 2013 02:10:33 +0000 (11:10 +0900)
committerchitta ranjan <chitta.rs@samsung.com>
Fri, 19 Apr 2013 02:10:33 +0000 (11:10 +0900)
Change-Id: I053fc36008566889f4d5696d092af12ce3bfca76
Signed-off-by: chitta ranjan <chitta.rs@samsung.com>
src/GlAlbumListEditorForm.cpp
src/GlFileListEditorForm.cpp

index 3f069d0..859073c 100644 (file)
@@ -187,6 +187,8 @@ AlbumListEditorForm::InitializePopup(void)
                Label* pLabel = new (std::nothrow) Label();
                pLabel->Construct(Rectangle(0, 0, popupClientBounds.width, H_DELETE_LABEL),
                                ResourceManager::GetString(L"IDS_COM_POP_DELETE_Q"));
+               pLabel->SetTextHorizontalAlignment(ALIGNMENT_LEFT);
+               pLabel->SetTextConfig(34,LABEL_TEXT_STYLE_BOLD);
 
                Button* pDeleteButton = new (std::nothrow) Button();
                pDeleteButton->Construct(
index 37a411c..42cc653 100644 (file)
@@ -918,7 +918,8 @@ FileListEditorForm::SetUpPopup(void)
        Label* pLabelText = new (std::nothrow) Label();
        pLabelText->Construct(Rectangle(0, 0, popupClientBounds.width, H_DELETE_LABEL),
                        ResourceManager::GetString(L"IDS_COM_POP_DELETE_Q"));
-       pLabelText->SetTextHorizontalAlignment(ALIGNMENT_CENTER);
+       pLabelText->SetTextHorizontalAlignment(ALIGNMENT_LEFT);
+       pLabelText->SetTextConfig(34,LABEL_TEXT_STYLE_BOLD);
        __pDeletePopup->AddControl(*pLabelText);
 
        Button* pDeleteButton = new (std::nothrow) Button();