[Progressbar] update process_large/medium/small GUI implementation
authorSung-Taek Hong <sth253.hong@samsung.com>
Sat, 15 Aug 2015 09:39:59 +0000 (18:39 +0900)
committerJaehwan Kim <jae.hwan.kim@samsung.com>
Tue, 17 Nov 2015 05:15:43 +0000 (14:15 +0900)
Change-Id: I148114d3ceac5fac6ff61bd98606ee0893a43e11
Signed-off-by: Sung-Taek Hong <sth253.hong@samsung.com>
src/lib/tizen_vector.c

index 45c4bca00729afbfa218dcdc39cc953067065db1..f58991107aeab37281aa12305aa96189a3808d61 100644 (file)
@@ -1852,14 +1852,14 @@ tizen_vg_progressbar_set(Elm_Progressbar *obj)
        !strcmp(str, "process_medium") ||
        !strcmp(str, "process_small"))
      {
-        vd->stroke_width = ELM_VG_SCALE_SIZE(vd->obj, 3);
+        vd->stroke_width = ELM_VG_SCALE_SIZE(vd->obj, 5);
         if (!strcmp(str, "process_medium"))
           {
-             vd->stroke_width = ELM_VG_SCALE_SIZE(vd->obj, 2);
+             vd->stroke_width = ELM_VG_SCALE_SIZE(vd->obj, 3);
           }
         if (!strcmp(str, "process_small"))
           {
-             vd->stroke_width = ELM_VG_SCALE_SIZE(vd->obj, 1.5);
+             vd->stroke_width = ELM_VG_SCALE_SIZE(vd->obj, 2);
           }
         vd->shrink = 2 * vd->stroke_width;
         vd->shift = vd->stroke_width + 0.5;