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

CtkTooltip on CTkSegmentedButton #25

Closed jipen closed 1 month ago

jipen commented 4 months ago

...Doesn't work.

As on ctk_tooltip.py (lines 111 to 116):

self.widget.bind("<Enter>", self.on_enter, add="+")'
 self.widget.bind("<Leave>", self.on_leave, add="+")
 self.widget.bind("<Motion>", self.on_enter, add="+")
 self.widget.bind("<B1-Motion>", self.on_enter, add="+")
 self.widget.bind("<Destroy>", lambda _: self.hide(), add="+")

And on ctk_segmented_button.py, from CustomTkinter (lines 442 to 443):


     def bind(self, sequence=None, command=None, add=None):
         raise NotImplementedError
Akascape commented 4 months ago

@jipen Internal issue with ctk_segmented button, have to update that code from that side.

jipen commented 4 months ago

Ok. And a great THANKS for what you do on the enhanced CTk widgets such as CTkListbox, CTkTooltip, CTkMessageBox or CTkTable ! 👍👍👍