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

Method remove_tooltip

PySimpleGUI/PySimpleGUI.py:1502–1512  ·  view source on GitHub ↗

Removes a previiously created tooltip for an element

(self)

Source from the content-addressed store, hash-verified

1500
1501
1502 def remove_tooltip(self):
1503 """
1504 Removes a previiously created tooltip for an element
1505
1506 """
1507
1508 if self.TooltipObject:
1509 try:
1510 self.TooltipObject.remove()
1511 except:
1512 pass
1513
1514
1515 def set_focus(self, force=False):

Callers 1

Demo_Tooltips.pyFile · 0.80

Calls 1

removeMethod · 0.80

Tested by

no test coverage detected