kuuko pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=23e9d4920875906c7f90fb4a8dd91c68e9522c07
commit 23e9d4920875906c7f90fb4a8dd91c68e9522c07 Author: Kai Huuhko <kai.huu...@gmail.com> Date: Sun Nov 3 07:45:37 2013 +0200 Elementary.progressbar: Style "recording" -> "double" Also, part "elm.cur.progressbar" is the main bar. See commit 12bbcd1a3a5c9e0a1a235166de2fca99dcfa5a0c --- efl/elementary/progressbar.pyx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/efl/elementary/progressbar.pyx b/efl/elementary/progressbar.pyx index f02bc08..f1d282e 100644 --- a/efl/elementary/progressbar.pyx +++ b/efl/elementary/progressbar.pyx @@ -54,23 +54,23 @@ This widget emits the following signals, besides the ones sent from This widget has the following styles: - - ``"default"`` - - ``"wheel"`` (simple style, no text, no progression, only "pulse" + - ``default`` + - ``wheel`` (simple style, no text, no progression, only "pulse" effect is available) - - ``"recording"`` (style with two independent progress indicators) + - ``double`` (style with two independent progress indicators) Default text parts of the progressbar widget that you can use for are: - - ``"default"`` - Label of the progressbar + - ``default`` - Label of the progressbar Default content parts of the progressbar widget that you can use for are: - - ``"icon"`` - An icon of the progressbar + - ``icon`` - An icon of the progressbar Default part names for the "recording" style: - - ``"elm.cur.progressbar1"`` - The "main" indicator bar - - ``"elm.cur.progressbar"`` - The "secondary" indicator bar + - ``elm.cur.progressbar`` - The "main" indicator bar + - ``elm.cur.progressbar1`` - The "secondary" indicator bar """ --