mirror of
https://github.com/python/cpython.git
synced 2024-11-24 02:15:30 +08:00
[Bug #1048816] Fix bug when you do Ctrl-K at the start of a line; fix from Stefan Heimann
This commit is contained in:
parent
a13ea5572a
commit
ccab001c3d
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user