summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaewon Cho <jaewon7.cho@samsung.com>2013-07-04 17:49:57 +0900
committerJaewon Cho <jaewon7.cho@samsung.com>2013-07-04 17:49:57 +0900
commit38e55c8ce5a8d55d5c395b6af5945018988e3d77 (patch)
tree2b2a70f6c6e0d7d365c8acc1d220726f6996cea9
parent2429c82b0878970e8e0dcbfcbd25f3bc6ce5dc3e (diff)
downloadUiControls-38e55c8ce5a8d55d5c395b6af5945018988e3d77.tar.gz
UiControls-38e55c8ce5a8d55d5c395b6af5945018988e3d77.tar.bz2
UiControls-38e55c8ce5a8d55d5c395b6af5945018988e3d77.zip
Fix the GroupItem Height issue
Change-Id: I415b10c8d5c492ee79d90c5af92ef23c3fb1c44a Signed-off-by: Jaewon Cho <jaewon7.cho@samsung.com>
-rw-r--r--project/src/GroupedListViewForm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/project/src/GroupedListViewForm.cpp b/project/src/GroupedListViewForm.cpp
index d886a93..459d96c 100644
--- a/project/src/GroupedListViewForm.cpp
+++ b/project/src/GroupedListViewForm.cpp
@@ -227,7 +227,7 @@ GroupItem*
GroupedListViewForm::CreateGroupItem(int groupIndex, float itemWidth)
{
GroupItem* pItem = new (std::nothrow) GroupItem();
- pItem->Construct(FloatDimension(itemWidth, 48.0f));
+ pItem->Construct(FloatDimension(itemWidth, 76.0f));
String text(L"");
switch (groupIndex)
{