Redirect vertical scrolling to the main editor text widget. The scroll bar is also updated.
(self, *args, **kwargs)
| 486 | index = text.index(f'{index}+1line') |
| 487 | |
| 488 | def yscroll_event(self, *args, **kwargs): |
| 489 | """Redirect vertical scrolling to the main editor text widget. |
| 490 | |
| 491 | The scroll bar is also updated. |
| 492 | """ |
| 493 | self.change_callback() |
| 494 | return 'break' |
| 495 | |
| 496 | def update_font(self): |
| 497 | """Update the sidebar text font, usually after config changes.""" |
nothing calls this directly
no test coverage detected