[3.7] bpo-36176: Fix IDLE autocomplete & calltip popup colors. (GH-12262) by miss-islington · Pull Request #12269 · python/cpython
Expand Up
@@ -80,7 +80,8 @@ def showtip(self, text, parenleft, parenright):
def showcontents(self):
"""Create the call-tip widget."""
self.label = Label(self.tipwindow, text=self.text, justify=LEFT,
background="#ffffe0", relief=SOLID, borderwidth=1,
background="#ffffd0", foreground="black",
relief=SOLID, borderwidth=1,
font=self.anchor_widget['font'])
self.label.pack()
Expand Down
Expand Down