This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Minor pasting patch
Type: Stage:
Components: IDLE Versions:
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: kbk Nosy List: kbk, taleinat
Priority: normal Keywords: patch

Created on 2007-02-13 21:45 by taleinat, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg51869 - (view) Author: Tal Einat (taleinat) * (Python committer) Date: 2007-02-13 21:45
When pasting text so that it goes beyond a window's right edge, the window is not scrolled, and the insertion cursor is not visible.

Just add self.text.see("insert") before the return in EditorWindow.paste() to fix this.
msg56304 - (view) Author: Kurt B. Kaiser (kbk) * (Python committer) Date: 2007-10-10 01:07
r58404. Thanks for the patch!
History
Date User Action Args
2022-04-11 14:56:22adminsetgithub: 44580
2007-10-10 01:07:25kbksetstatus: open -> closed
assignee: kbk
resolution: accepted
messages: + msg56304
nosy: + kbk
2007-02-13 21:45:21taleinatcreate