Kaydet (Commit) 7a503a4e authored tarafından Just van Rossum's avatar Just van Rossum

Fix bug #670845: cut & clear in the output window now work, in that

  - clear clears the entire buffer
  - cut doesn't cut, but copies.
üst 0b743441
......@@ -249,6 +249,12 @@ class OutputTextWidget(W.EditText):
f.close()
fss.SetCreatorType(W._signature, 'TEXT')
def domenu_cut(self, *args):
self.domenu_copy(*args)
def domenu_clear(self, *args):
self.set('')
class PyOutput:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment