Causes a window previously made to "Disappear" (using that method). Does this by restoring the alpha channel
(self)
| 11713 | self.TKroot.attributes('-alpha', 0) |
| 11714 | |
| 11715 | def reappear(self): |
| 11716 | """ |
| 11717 | Causes a window previously made to "Disappear" (using that method). Does this by restoring the alpha channel |
| 11718 | """ |
| 11719 | if not self._is_window_created('tried Window.reappear'): |
| 11720 | return |
| 11721 | self.TKroot.attributes('-alpha', 255) |
| 11722 | |
| 11723 | def set_alpha(self, alpha): |
| 11724 | """ |