(self)
| 267 | pass |
| 268 | |
| 269 | def check_dim_timeout(self): |
| 270 | if self.screen_dim_timeout > 0 and not self.is_dimmed: |
| 271 | if time.time() - self.last_activity_time > self.screen_dim_timeout: |
| 272 | self.dim_screen() |
| 273 | |
| 274 | def handle_input_loop(self): |
| 275 | """Handle button input for navigation and pause menu.""" |