(self, *args, **kwargs)
| 354 | return self._bpy_selectable |
| 355 | |
| 356 | def get_cursor_coords(self, *args, **kwargs): |
| 357 | # urwid gets confused if a nonselectable widget has a cursor position. |
| 358 | if not self._bpy_selectable: |
| 359 | return None |
| 360 | return super().get_cursor_coords(*args, **kwargs) |
| 361 | |
| 362 | def render(self, size, focus=False): |
| 363 | # XXX I do not want to have to do this, but listbox gets confused |
nothing calls this directly
no test coverage detected