Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0ecd097

Browse files
authored
Merge pull request #17756 from anntzer/tkdark
Fix tk tooltips for dark themes.
2 parents 7fd177b + 0c8afdd commit 0ecd097

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/_backend_tk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ def showtip(self, text):
684684
except tk.TclError:
685685
pass
686686
label = tk.Label(tw, text=self.text, justify=tk.LEFT,
687-
background="#ffffe0", relief=tk.SOLID, borderwidth=1)
687+
relief=tk.SOLID, borderwidth=1)
688688
label.pack(ipadx=1)
689689

690690
def hidetip(self):

0 commit comments

Comments
 (0)