(self)
| 487 | return yp, xp, res |
| 488 | |
| 489 | def help(self): |
| 490 | help_txt = readme() |
| 491 | idx = help_txt.index('Keybindings:\n') |
| 492 | help_txt = [i.replace('**', '') for i in help_txt[idx:] |
| 493 | if '===' not in i] |
| 494 | TextBox(self.scr, data="".join(help_txt), title="Help")() |
| 495 | self.resize() |
| 496 | |
| 497 | def toggle_header(self): |
| 498 | if self.header_offset == self.header_offset_orig: |