Forces this window to take focus
(self)
| 12146 | print('Exception trying to make modal', e) |
| 12147 | |
| 12148 | def force_focus(self): |
| 12149 | """ |
| 12150 | Forces this window to take focus |
| 12151 | """ |
| 12152 | if not self._is_window_created('tried Window.force_focus'): |
| 12153 | return |
| 12154 | self.TKroot.focus_force() |
| 12155 | |
| 12156 | def was_closed(self): |
| 12157 | """ |
no test coverage detected