ClockworkLynx / kytten

Automatically exported from code.google.com/p/kytten
7 stars 0 forks source link

Enable method of kytten.Input doesn't exist #5

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Line 49 of text_input.py defines this function:

    def ensable(self):
        Control.disable(self)
        self.document_style_set = False

This is clearly wrong, and should maybe be more like:

    def enable(self):
        Control.enable(self)
        self.document_style_set = False

Original issue reported on code.google.com by ChrisM6794@gmail.com on 14 Oct 2009 at 2:46