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

Need help to hide the Tooltip all at once. #24

Closed DIY-TECH-HACKER closed 4 months ago

DIY-TECH-HACKER commented 4 months ago

Is there anyway to hide all the Tooltips at once without using a loop ?

Akascape commented 4 months ago

You better save all the tooltips in a list, then loop it and just hide() them. That will be the proper method.

DIY-TECH-HACKER commented 4 months ago

Thanks a lot for the idea..