Redirect focus-in events to the main editor text widget.
(self, event)
| 119 | return self.yscroll_event(*args, **kwargs) |
| 120 | |
| 121 | def redirect_focusin_event(self, event): |
| 122 | """Redirect focus-in events to the main editor text widget.""" |
| 123 | self.text.focus_set() |
| 124 | return 'break' |
| 125 | |
| 126 | def redirect_mousebutton_event(self, event, event_name): |
| 127 | """Redirect mouse button events to the main editor text widget.""" |