8000 Merge pull request #17756 from anntzer/tkdark · matplotlib/matplotlib@0ecd097 · GitHub
[go: up one dir, main page]

Skip to content
Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

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,
68 53EE 7-
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)
0