(self, bottom_w, listbox)
| 456 | """ |
| 457 | |
| 458 | def __init__(self, bottom_w, listbox): |
| 459 | super().__init__() |
| 460 | |
| 461 | self.bottom_w = bottom_w |
| 462 | self.listbox = listbox |
| 463 | # TODO: this linebox should use the 'main' color. |
| 464 | self.top_w = urwid.LineBox(listbox) |
| 465 | self.tooltip_focus = False |
| 466 | |
| 467 | def selectable(self): |
| 468 | return self.bottom_w.selectable() |