summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/AutoCompleteWindow.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-09-27 00:04:23 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-09-27 00:04:23 (GMT)
commit0103af397ff59a2feab21b954087a657201d37f7 (patch)
treef543631ad4eaa4338c256e182b78f3fd1e65c551 /Lib/idlelib/AutoCompleteWindow.py
parent9c2982a25c01752d0969435afe8ce61ac48eb4ee (diff)
parent34a804767225ef5c40d58ebfc34daa37afb7fa92 (diff)
downloadcpython-0103af397ff59a2feab21b954087a657201d37f7.zip
cpython-0103af397ff59a2feab21b954087a657201d37f7.tar.gz
cpython-0103af397ff59a2feab21b954087a657201d37f7.tar.bz2
Merge with 3.5
Diffstat (limited to 'Lib/idlelib/AutoCompleteWindow.py')
-rw-r--r--Lib/idlelib/AutoCompleteWindow.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/AutoCompleteWindow.py b/Lib/idlelib/AutoCompleteWindow.py
index f666ea6..2ee6878 100644
--- a/Lib/idlelib/AutoCompleteWindow.py
+++ b/Lib/idlelib/AutoCompleteWindow.py
@@ -192,6 +192,7 @@ class AutoCompleteWindow:
scrollbar.config(command=listbox.yview)
scrollbar.pack(side=RIGHT, fill=Y)
listbox.pack(side=LEFT, fill=BOTH, expand=True)
+ acw.lift() # work around bug in Tk 8.5.18+ (issue #24570)
# Initialize the listbox selection
self.listbox.select_set(self._binary_search(self.start))