diff options
author | Choongeun Hong <cheun.hong@samsung.com> | 2013-04-10 22:35:04 +0900 |
---|---|---|
committer | Choongeun Hong <cheun.hong@samsung.com> | 2013-04-11 11:33:03 +0900 |
commit | 34613279da3965b5214f7668fb95b9aee7b2a811 (patch) | |
tree | d6480be58c656b9ddd72a0629dc3d529e73d7d58 | |
parent | 2a23317e816fa79681d356a7255e18e037098c2a (diff) | |
download | UiControls-34613279da3965b5214f7668fb95b9aee7b2a811.tar.gz UiControls-34613279da3965b5214f7668fb95b9aee7b2a811.tar.bz2 UiControls-34613279da3965b5214f7668fb95b9aee7b2a811.zip |
Fixed N_SE-32534. 'ReOrder Off' multiline button text size problem
Change-Id: I01b39f32ab50504367f7db71a5352bb11c0e3638
Signed-off-by: Choongeun Hong <cheun.hong@samsung.com>
-rw-r--r-- | project/src/ListViewForm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project/src/ListViewForm.cpp b/project/src/ListViewForm.cpp index 7ce9ff5..62546ea 100644 --- a/project/src/ListViewForm.cpp +++ b/project/src/ListViewForm.cpp @@ -77,7 +77,7 @@ ListViewForm::OnInitializing(void) FooterItem footerItem2; footerItem2.Construct(ID_REORDER_OFF); - footerItem2.SetText(L"ReOrder Off"); + footerItem2.SetText(L"ReOrder\nOff"); Footer* pFooter = GetFooter(); pFooter->SetStyle(FOOTER_STYLE_BUTTON_TEXT); |