Removes a previiously created tooltip for an element
(self)
| 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): |