[issue27115] IDLE/tkinter: in simpledialog, != [OK] click

2017-05-26 Thread Louie Lu
Louie Lu added the comment: We can solve this problem by two ways. One is to add set_line_and_column() to the end of goto_line_event(), but this will make Return trigger set_line_and_column twice. Another is to change the bind event in simpledialog from "" to "" to prevent editor use the

[issue27115] IDLE/tkinter: in simpledialog, != [OK] click

2016-06-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If you close the Goto dialog by pressing , the KeyRelease event is sent to the editor window. This triggers the <> event. -- ___ Python tracker

[issue27115] IDLE/tkinter: in simpledialog, != [OK] click

2016-06-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: Okay, will take a look at the status bar code and update mechanism. -- assignee: -> terry.reedy ___ Python tracker ___

[issue27115] IDLE/tkinter: in simpledialog, != [OK] click

2016-06-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is not Tkinter issue, but IDLE issue. Other similar cases: Open search dialog and find something. The status bar is not updated. It is updated only if you close the search dialog. Select a text and delete it by a mouse. The status bar is not updated.

[issue27115] IDLE/tkinter: in simpledialog, != [OK] click

2016-05-24 Thread Terry J. Reedy
New submission from Terry J. Reedy: On Win 10, Python 3.5 or 3.6, IDLE Shell or Editor with at least a few lines of text: hit Alt-G to open 'Goto' window. Enter a line # other than the current one. Hit . Cursor moves to line enter, though it shrinks to one pixel wide from two pixels.