diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-27 00:04:09 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-27 00:04:09 (GMT) |
commit | 34a804767225ef5c40d58ebfc34daa37afb7fa92 (patch) | |
tree | 008e419f11558fc933d03e7b695ab076b5313fe1 /Lib/idlelib/AutoCompleteWindow.py | |
parent | df1fe78acbbb019658af3213b43374359e6667a8 (diff) | |
parent | d2134c71a12e8deac9ba6b4f4ffe4d271d49cabe (diff) | |
download | cpython-34a804767225ef5c40d58ebfc34daa37afb7fa92.zip cpython-34a804767225ef5c40d58ebfc34daa37afb7fa92.tar.gz cpython-34a804767225ef5c40d58ebfc34daa37afb7fa92.tar.bz2 |
Merge with 3.4
Diffstat (limited to 'Lib/idlelib/AutoCompleteWindow.py')
-rw-r--r-- | Lib/idlelib/AutoCompleteWindow.py | 1 |
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)) |