parent
c095930ba3
commit
034bfaa052
|
@ -114,8 +114,10 @@ class Application(object):
|
||||||
|
|
||||||
# create all the insert methods for the character ranges we like
|
# create all the insert methods for the character ranges we like
|
||||||
for c in string.letters + string.digits + string.punctuation:
|
for c in string.letters + string.digits + string.punctuation:
|
||||||
self.methods[obj.name] = method.InsertString(c)
|
obj = method.InsertString(c)
|
||||||
self.methods[obj.name] = method.OverwriteChar(c)
|
self.methods[obj.name] = obj
|
||||||
|
obj = method.OverwriteChar(c)
|
||||||
|
self.methods[obj.name] = obj
|
||||||
|
|
||||||
# buffer list stuff
|
# buffer list stuff
|
||||||
height = self.y - 1
|
height = self.y - 1
|
||||||
|
|
Loading…
Reference in New Issue