Make this widget no longer busy. User events will again be received by the widget.
(self)
| 985 | busy_current = tk_busy_current |
| 986 | |
| 987 | def tk_busy_forget(self): |
| 988 | """Make this widget no longer busy. |
| 989 | |
| 990 | User events will again be received by the widget. |
| 991 | """ |
| 992 | self.tk.call('tk', 'busy', 'forget', self._w) |
| 993 | busy_forget = tk_busy_forget |
| 994 | |
| 995 | def tk_busy_hold(self, **kw): |