diff --git a/kivy/factory_registers.py b/kivy/factory_registers.py index 0d1236ee5..16f33d397 100644 --- a/kivy/factory_registers.py +++ b/kivy/factory_registers.py @@ -27,6 +27,7 @@ Factory.register('TouchShape', module='kivy.input.shape') Factory.register('TouchShapeRect', module='kivy.input.shape') Factory.register('Widget', module='kivy.uix.widget') Factory.register('Button', module='kivy.uix.button') +Factory.register('Label', module='kivy.uix.label') Factory.register('EventDispatcher', module='kivy.c_ext.event') Factory.register('Canvas', 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('PathClose', 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')