()
| 426 | } |
| 427 | |
| 428 | requestPomodoroUpdate(): void { |
| 429 | if (this.pomodoroUpdateTimeout) { |
| 430 | window.clearTimeout(this.pomodoroUpdateTimeout); |
| 431 | } |
| 432 | |
| 433 | this.pomodoroUpdateTimeout = window.setTimeout(() => { |
| 434 | this.updatePomodoroStatusBar(); |
| 435 | }, 100); |
| 436 | } |
| 437 | |
| 438 | /** |
| 439 | * Show or hide the status bar based on settings |
no test coverage detected