mirror of https://github.com/kivy/kivy.git
properties: expose defaultvalue to user, and allow to change it for the next instances
This commit is contained in:
parent
49ef114e51
commit
0123902de9
|
@ -1,7 +1,7 @@
|
||||||
cdef class Property:
|
cdef class Property:
|
||||||
cdef str _name
|
cdef str _name
|
||||||
cdef int allownone
|
cdef int allownone
|
||||||
cdef object defaultvalue
|
cdef public object defaultvalue
|
||||||
cdef init_storage(self, object obj, dict storage)
|
cdef init_storage(self, object obj, dict storage)
|
||||||
cpdef link(self, object obj, str name)
|
cpdef link(self, object obj, str name)
|
||||||
cpdef link_deps(self, object obj, str name)
|
cpdef link_deps(self, object obj, str name)
|
||||||
|
|
Loading…
Reference in New Issue