From 24b293bc517362a1a2046a75df1b01ff079de0b6 Mon Sep 17 00:00:00 2001 From: DoHyun Pyun Date: Fri, 18 Sep 2020 11:24:20 +0900 Subject: [PATCH] Modify the size of the progress bar in the common profile Change-Id: Ie9464f7d6808f77bc66cb269581ef2ad1ded41c3 Signed-off-by: DoHyun Pyun --- standard/bt-main-view.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/standard/bt-main-view.c b/standard/bt-main-view.c index d526a9a..4eeb48d 100644 --- a/standard/bt-main-view.c +++ b/standard/bt-main-view.c @@ -851,7 +851,12 @@ static Evas_Object *__bt_main_searched_icon_get(void *data, evas_object_propagate_events_set(icon, EINA_FALSE); } else if (!strcmp("elm.swallow.end", part) || !strcmp("elm.end", part)) { if (dev->status != BT_IDLE) { - icon = _bt_create_progressbar(obj, "process_medium"); + + if (TIZEN_COMMON) + icon = _bt_create_progressbar(obj, "process_small"); + else + icon = _bt_create_progressbar(obj, "process_medium"); + evas_object_color_set(icon, 76, 76, 76, 255); } } -- 2.7.4