Akascape / CTkToolTip

Small pop-up widget for displaying details inside customtkinter. (extension/add-on)
Creative Commons Zero v1.0 Universal
111 stars 7 forks source link

How do I make it appear even when out of the program? #27

Open zSynctic opened 1 month ago

zSynctic commented 1 month ago

After pressing a button the tooltip appears and keeps updating and what I want is for the tooltip to appear even out of the program and not restricted to a widget. Thanks

Akascape commented 1 month ago

@zSynctic You can add thiis line when you want to lock it in a fixed place.

tooltip.disable = True

If you want to remove, then use this:

tooltip.disable = False
tooltip.on_leave()
zSynctic commented 1 month ago

What I meant was that I want the tooltip to appear even when I'm out of the program and on other programs