From: DoHyun Pyun Date: Fri, 18 Sep 2020 02:24:20 +0000 (+0900) Subject: Modify the size of the progress bar in the common profile X-Git-Tag: accepted/tizen/6.0/unified/20201030.122911^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=24b293bc517362a1a2046a75df1b01ff079de0b6;p=apps%2Fnative%2Fug-bluetooth-efl.git Modify the size of the progress bar in the common profile Change-Id: Ie9464f7d6808f77bc66cb269581ef2ad1ded41c3 Signed-off-by: DoHyun Pyun --- 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); } }