Handle back button action.
(self, action: dict, width: int, height: int)
| 188 | return ActionResult(True, False) |
| 189 | |
| 190 | def _handle_back(self, action: dict, width: int, height: int) -> ActionResult: |
| 191 | """Handle back button action.""" |
| 192 | device_factory = get_device_factory() |
| 193 | device_factory.back(self.device_id) |
| 194 | return ActionResult(True, False) |
| 195 | |
| 196 | def _handle_home(self, action: dict, width: int, height: int) -> ActionResult: |
| 197 | """Handle home button action.""" |
nothing calls this directly
no test coverage detected