you can set radius of a circle object item in range between 0 to 180 px(fixed)
this patch makes it wider by using scale facotrs.
and this patch also contains changes for a radius value of scroller bar.
Change-Id: I331ab800722299eafd548ab987952eadec6a6d35
if (!item) return;
if (radius < 0.0) radius = 0.0;
- if (radius > 180.0) radius = 180.0;
+ if (radius > ELM_SCALE_SIZE(180.0)) radius = ELM_SCALE_SIZE(180.0);
if (item->radius == radius) return;
data->policy_v = ELM_SCROLLER_POLICY_AUTO;
data->policy_h = ELM_SCROLLER_POLICY_AUTO;
data->line_width = SCROLL_BAR_WIDTH_SIZE;
- data->radius = SCROLL_BAR_RADIUS_SIZE;
+ data->radius = ELM_SCALE_SIZE(SCROLL_BAR_RADIUS_SIZE);
data->step_x = data->step_y = 32;
data->bezel_scrollbar_color_class = STR_DUP(edje_object_data_get(elm_layout_edje_get(obj->widget_object), "bezel_bar_color_class"));