You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the theme, this is my favorite by far, I use it on all of my tkinter projects these days.
I added tooltips to a project using idlelib's hovertip. The tooltip renders fine with the light theme, with the dark theme, the tooltip renders blank. Just checking to see if you have any thoughts. I attached screen captures and code to add a tooltip.
Code to add a tool tip:
importtkinterastkfromidlelib.tooltipimportHovertiproot=tk.Tk()
root.geometry("300x200")
btn=tk.Button(root, text="Hover over me")
btn.pack(pady=20)
# Add tooltipHovertip(btn, "This is a tooltip!")
root.mainloop()
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Thanks for the theme, this is my favorite by far, I use it on all of my tkinter projects these days.
I added tooltips to a project using idlelib's hovertip. The tooltip renders fine with the light theme, with the dark theme, the tooltip renders blank. Just checking to see if you have any thoughts. I attached screen captures and code to add a tooltip.
Code to add a tool tip:
Beta Was this translation helpful? Give feedback.
All reactions