MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / unschedule

Method unschedule

PySimpleGUI/PySimpleGUI.py:898–904  ·  view source on GitHub ↗

Cancel timer used to time mouse hover

(self)

Source from the content-addressed store, hash-verified

896 self.id = self.widget.after(self.timeout, self.showtip)
897
898 def unschedule(self):
899 """
900 Cancel timer used to time mouse hover
901 """
902 if self.id:
903 self.widget.after_cancel(self.id)
904 self.id = None
905
906 def showtip(self):
907 """

Callers 2

leaveMethod · 0.95
scheduleMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected