Kaydet (Commit) ccab001c authored tarafından Andrew M. Kuchling's avatar Andrew M. Kuchling

[Bug #1048816] Fix bug when you do Ctrl-K at the start of a line; fix from Stefan Heimann

üst a13ea557
......@@ -111,6 +111,8 @@ class Textbox:
if x == 0 and self._end_of_line(y) == 0:
self.win.deleteln()
else:
# first undo the effect of self._end_of_line
self.win.move(y, x)
self.win.clrtoeol()
elif ch == ascii.FF: # ^l
self.win.refresh()
......
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