Get rid of conflicting ^X binding. Use ^W.

This commit is contained in:
Guido van Rossum 1998-10-16 20:08:34 +00:00
parent 5188a25efe
commit baf53b4ea8
3 changed files with 7 additions and 8 deletions

View file

@ -45,6 +45,7 @@ class EditorWindow:
self.text.bind("<<help>>", self.help_dialog)
self.text.bind("<<about-idle>>", self.about_dialog)
self.text.bind("<<open-module>>", self.open_module)
self.text.bind("<<do-nothing>>", lambda event: "break")
vbar['command'] = text.yview
vbar.pack(side=RIGHT, fill=Y)