(self)
| 536 | self.set_sensor(self.index + 1) |
| 537 | |
| 538 | def toggle_recording(self): |
| 539 | self.recording = not self.recording |
| 540 | self.hud.notification('Recording %s' % ('On' if self.recording else 'Off')) |
| 541 | |
| 542 | def render(self, display): |
| 543 | if self.surface is not None: |
nothing calls this directly
no test coverage detected