progressbar_example.c: fixed wheel style pluse issue.

This commit is contained in:
Daniel Juyung Seo 2013-08-07 13:52:50 +09:00
parent 5cfb0d9b7c
commit b20c482cb0
1 changed files with 1 additions and 0 deletions

View File

@ -272,6 +272,7 @@ elm_main(int argc,
pb = elm_progressbar_add(win);
elm_object_style_set(pb, "wheel");
elm_object_text_set(pb, "Style: wheel");
elm_progressbar_pulse_set(pb, EINA_TRUE);
evas_object_size_hint_align_set(pb, EVAS_HINT_FILL, 0.5);
evas_object_size_hint_weight_set(pb, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
elm_box_pack_end(bx, pb);