mirror of https://github.com/kivy/kivy.git
factory: add missing classes
This commit is contained in:
parent
7a27aab7d7
commit
0cc55252db
|
@ -27,6 +27,7 @@ Factory.register('TouchShape', module='kivy.input.shape')
|
||||||
Factory.register('TouchShapeRect', module='kivy.input.shape')
|
Factory.register('TouchShapeRect', module='kivy.input.shape')
|
||||||
Factory.register('Widget', module='kivy.uix.widget')
|
Factory.register('Widget', module='kivy.uix.widget')
|
||||||
Factory.register('Button', module='kivy.uix.button')
|
Factory.register('Button', module='kivy.uix.button')
|
||||||
|
Factory.register('Label', module='kivy.uix.label')
|
||||||
Factory.register('EventDispatcher', module='kivy.c_ext.event')
|
Factory.register('EventDispatcher', module='kivy.c_ext.event')
|
||||||
Factory.register('Canvas', module='kivy.c_ext.graphics')
|
Factory.register('Canvas', module='kivy.c_ext.graphics')
|
||||||
Factory.register('GraphicInstruction', module='kivy.c_ext.graphics')
|
Factory.register('GraphicInstruction', module='kivy.c_ext.graphics')
|
||||||
|
@ -52,3 +53,5 @@ Factory.register('PathStart', module='kivy.c_ext.graphics')
|
||||||
Factory.register('PathLineTo', module='kivy.c_ext.graphics')
|
Factory.register('PathLineTo', module='kivy.c_ext.graphics')
|
||||||
Factory.register('PathClose', module='kivy.c_ext.graphics')
|
Factory.register('PathClose', module='kivy.c_ext.graphics')
|
||||||
Factory.register('PathEnd', module='kivy.c_ext.graphics')
|
Factory.register('PathEnd', module='kivy.c_ext.graphics')
|
||||||
|
Factory.register('PathStroke', module='kivy.c_ext.graphics')
|
||||||
|
Factory.register('PathFill', module='kivy.c_ext.graphics')
|
||||||
|
|
Loading…
Reference in New Issue