Like `urwid.ListBox`, except that it does not eat up and down keys.
| 433 | |
| 434 | |
| 435 | class BPythonListBox(urwid.ListBox): |
| 436 | """Like `urwid.ListBox`, except that it does not eat up and |
| 437 | down keys. |
| 438 | """ |
| 439 | |
| 440 | def keypress(self, size, key): |
| 441 | if key not in ("up", "down"): |
| 442 | return urwid.ListBox.keypress(self, size, key) |
| 443 | return key |
| 444 | |
| 445 | |
| 446 | class Tooltip(urwid.BoxWidget): |