Internal callback for when a mouse was clicked... I think. :param event: Event data passed in by tkinter (not used) :type event:
(self, event)
| 1407 | self._generic_callback_handler('') |
| 1408 | |
| 1409 | def _ClickHandler(self, event): |
| 1410 | """ |
| 1411 | Internal callback for when a mouse was clicked... I think. |
| 1412 | |
| 1413 | :param event: Event data passed in by tkinter (not used) |
| 1414 | :type event: |
| 1415 | """ |
| 1416 | self._generic_callback_handler('') |
| 1417 | |
| 1418 | def _this_elements_window_closed(self, quick_check=True): |
| 1419 | if self.ParentForm is not None: |
nothing calls this directly
no test coverage detected