Skip to content
Permalink
Browse files

bpo-38943: Fix IDLE autocomplete window not always appearing (GH-17416)

This has happened on some versions of Ubuntu.
(cherry picked from commit bbc4162)

Co-authored-by: JohnnyNajera <58344607+JohnnyNajera@users.noreply.github.com>
  • Loading branch information
miss-islington and JohnnyNajera committed Dec 10, 2019
1 parent 4e0e452 commit 1b0e88dde146eb290735f4b486d4a67074132100
@@ -3,6 +3,9 @@ Released on 2019-12-16?
======================================


bpo-38943: Fix autocomplete windows not always appearing on some
systems. Patch by Johnny Najera.

bpo-38944: Excape key now closes IDLE completion windows. Patch by
Johnny Najera.

@@ -257,6 +257,7 @@ def winconfig_event(self, event):
# place acw above current line
new_y -= acw_height
acw.wm_geometry("+%d+%d" % (new_x, new_y))
acw.update_idletasks()

if platform.system().startswith('Windows'):
# See issue 15786. When on Windows platform, Tk will misbehave
@@ -0,0 +1,2 @@
Fix IDLE autocomplete windows not always appearing on some systems.
Patch by Johnny Najera.

0 comments on commit 1b0e88d

Please sign in to comment.
You can’t perform that action at this time.