Used to bring back a window that was previously hidden using the Hide method
(self)
| 11685 | self.TKroot.withdraw() |
| 11686 | |
| 11687 | def un_hide(self): |
| 11688 | """ |
| 11689 | Used to bring back a window that was previously hidden using the Hide method |
| 11690 | """ |
| 11691 | if not self._is_window_created('tried Window.un_hide'): |
| 11692 | return |
| 11693 | if self._Hidden: |
| 11694 | self.TKroot.deiconify() |
| 11695 | self._Hidden = False |
| 11696 | |
| 11697 | def is_hidden(self): |
| 11698 | """ |
no test coverage detected