(self, *args)
| 425 | self._bpy_may_move_cursor = False |
| 426 | |
| 427 | def mouse_event(self, *args): |
| 428 | self._bpy_may_move_cursor = True |
| 429 | try: |
| 430 | return super().mouse_event(*args) |
| 431 | finally: |
| 432 | self._bpy_may_move_cursor = False |
| 433 | |
| 434 | |
| 435 | class BPythonListBox(urwid.ListBox): |
nothing calls this directly
no test coverage detected