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
I tried to put a CTkTooltip on a CTkCanvas and it failed with this error
File ".venv\Lib\site-packages\CTkToolTip\ctk_tooltip.py", line 42, in __init__
self.transparent_color = self.widget._apply_appearance_mode(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'CTkCanvas' object has no attribute '_apply_appearance_mode'
I monkeyed around a little bit and was able to get it working by checking if hasattr(self.widget, _apply_appearance_mode). Is there a reason CTkToolTip can't be attached to a CTkCanvas?
For context, I'm using a small canvas to draw simple status "icons" (just colored circles) and want to use the tooltip to add more information as to why the status is a certain color. There may be a better way to accomplish this too.
The text was updated successfully, but these errors were encountered:
I tried to put a CTkTooltip on a CTkCanvas and it failed with this error
I monkeyed around a little bit and was able to get it working by checking
if hasattr(self.widget, _apply_appearance_mode)
. Is there a reason CTkToolTip can't be attached to a CTkCanvas?For context, I'm using a small canvas to draw simple status "icons" (just colored circles) and want to use the tooltip to add more information as to why the status is a certain color. There may be a better way to accomplish this too.
The text was updated successfully, but these errors were encountered: