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

Skip to content

Commit 1e3b4b2

Browse files
authored
Merge pull request #17760 from meeseeksmachine/auto-backport-of-pr-17756-on-v3.3.x
Backport PR #17756 on branch v3.3.x (Fix tk tooltips for dark themes.)
2 parents 887f9a9 + b5cf81d commit 1e3b4b2

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)