From d2134c71a12e8deac9ba6b4f4ffe4d271d49cabe Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sat, 26 Sep 2015 20:03:57 -0400 Subject: Issue #24570: Idle: make calltip and completion boxes appear on Macs affected by a tk regression. Initial patch by Mark Roseman. --- Lib/idlelib/AutoCompleteWindow.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/idlelib/AutoCompleteWindow.py') diff --git a/Lib/idlelib/AutoCompleteWindow.py b/Lib/idlelib/AutoCompleteWindow.py index f666ea628bb..2ee6878396d 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)) -- cgit v1.2.3