Deiconify this widget. If it was never mapped it will not be mapped. On Windows it will raise this widget and give it the focus.
(self)
| 2273 | command = wm_command |
| 2274 | |
| 2275 | def wm_deiconify(self): |
| 2276 | """Deiconify this widget. If it was never mapped it will not be mapped. |
| 2277 | On Windows it will raise this widget and give it the focus.""" |
| 2278 | return self.tk.call('wm', 'deiconify', self._w) |
| 2279 | |
| 2280 | deiconify = wm_deiconify |
| 2281 |
no test coverage detected