From 01e8b57b3f26a97a09e3f9511f11e45187d85349 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Sun, 21 Oct 2012 21:15:20 +0200 Subject: [PATCH] factory: add missing Mesh() in registers --- kivy/factory_registers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kivy/factory_registers.py b/kivy/factory_registers.py index e020e7ce5..484ebec20 100644 --- a/kivy/factory_registers.py +++ b/kivy/factory_registers.py @@ -67,6 +67,7 @@ r('Ellipse', module='kivy.graphics.vertex_instructions') r('Line', module='kivy.graphics.vertex_instructions') r('Point', module='kivy.graphics.vertex_instructions') r('Bezier', module='kivy.graphics.vertex_instructions') +r('Mesh', module='kivy.graphics.vertex_instructions') r('MotionEventFactory', module='kivy.input.factory') r('MotionEventProvider', module='kivy.input.provider') r('Shape', module='kivy.input.shape')