Elementary.actionslider: Fix a string return value to be unicode

This commit is contained in:
Kai Huuhko 2013-10-30 04:27:18 +02:00
parent be547283f0
commit db4483a88c
1 changed files with 2 additions and 2 deletions

View File

@ -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.