kuuko pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=db4483a88c14031deaf0fdb6deeffb31fac8001d
commit db4483a88c14031deaf0fdb6deeffb31fac8001d Author: Kai Huuhko <[email protected]> Date: Wed Oct 30 04:27:18 2013 +0200 Elementary.actionslider: Fix a string return value to be unicode --- efl/elementary/actionslider.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/efl/elementary/actionslider.pyx b/efl/elementary/actionslider.pyx index 63b210f..54d6f5b 100644 --- a/efl/elementary/actionslider.pyx +++ b/efl/elementary/actionslider.pyx @@ -118,10 +118,10 @@ cdef class Actionslider(LayoutClass): """ def __get__(self): - return elm_actionslider_selected_label_get(self.obj) + return _ctouni(elm_actionslider_selected_label_get(self.obj)) def selected_label_get(self): - return elm_actionslider_selected_label_get(self.obj) + return _ctouni(elm_actionslider_selected_label_get(self.obj)) property indicator_pos: """Indicator position. --
