summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunghyun Kim <jh1114.kim@samsung.com>2012-09-11 20:28:44 +0900
committerJunghyun Kim <jh1114.kim@samsung.com>2012-09-11 20:28:44 +0900
commitd49c013d34e441131b44dc0edf92010a752f9fe2 (patch)
treee62f2929b031c52e2febaf8b1f7da375bc1add64
parent8c0f4db2b474e76f80a66163b31571b0255b9ec5 (diff)
downloadtaskmanager-master.tar.gz
taskmanager-master.tar.bz2
taskmanager-master.zip
-rwxr-xr-xsrc/_genlist.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/_genlist.c b/src/_genlist.c
index 43089d5..74bab7a 100755
--- a/src/_genlist.c
+++ b/src/_genlist.c
@@ -327,7 +327,9 @@ static Evas_Object *_gl_content_get_app(void *data, Evas_Object *obj,
retvm_if(rt == NULL, NULL, "Failed to add rectangle\n");
evas_object_color_set(rt, 0, 0, 0, 0);
- evas_object_size_hint_min_set(rt, 50, 50);
+ evas_object_size_hint_min_set(rt,
+ (int)72 * elm_scale_get(),
+ (int)72 * elm_scale_get());
elm_object_part_content_set(icon, "icon_ly", rt);
elm_object_part_content_set(icon, "icon", icon_ly);
@@ -482,7 +484,9 @@ static Evas_Object *_gl_content_get_his(void *data, Evas_Object *obj,
retvm_if (rt == NULL, NULL, "Failed to add rectangle\n");
evas_object_color_set(rt, 0, 0, 0, 0);
- evas_object_size_hint_min_set(rt, 50, 50);
+ evas_object_size_hint_min_set(rt,
+ (int)72 * elm_scale_get(),
+ (int)72 * elm_scale_get());
elm_object_part_content_set(icon, "icon_ly", rt);
elm_object_part_content_set(icon, "icon", icon_ly);
@@ -515,7 +519,7 @@ void _set_itc(void)
itc_dl.func.text_get = _gl_text_get_app;
itc_dl.func.content_get = _gl_content_get_app;
- itc_hl.item_style = "1text.2icon.4";
+ itc_hl.item_style = "1text.2icon.1";
itc_hl.func.text_get = _gl_text_get_his;
itc_hl.func.content_get = _gl_content_get_his;