(self, size, event, button, col, row, focus)
| 32 | return True |
| 33 | |
| 34 | def mouse_event(self, size, event, button, col, row, focus): |
| 35 | if event == "mouse press" and button == 1: |
| 36 | self.master.commands.execute("console.view.flow @focus") |
| 37 | return True |
| 38 | |
| 39 | def keypress(self, size, key): |
| 40 | return key |