Hides the window from the screen and the task bar
(self)
| 11676 | # self.TKroot.grab_release() |
| 11677 | |
| 11678 | def hide(self): |
| 11679 | """ |
| 11680 | Hides the window from the screen and the task bar |
| 11681 | """ |
| 11682 | if not self._is_window_created('tried Window.hide'): |
| 11683 | return |
| 11684 | self._Hidden = True |
| 11685 | self.TKroot.withdraw() |
| 11686 | |
| 11687 | def un_hide(self): |
| 11688 | """ |
no test coverage detected