()
| 481 | } |
| 482 | |
| 483 | destroy() { |
| 484 | Utils.timeout_remove(this.triggerPreviewTimeout); |
| 485 | this.triggerPreviewTimeout = null; |
| 486 | |
| 487 | Utils.timeout_remove(this.showPreviewTimeout); |
| 488 | this.showPreviewTimeout = null; |
| 489 | |
| 490 | Utils.timeout_remove(this.activatePreviewTimeout); |
| 491 | this.activatePreviewTimeout = null; |
| 492 | |
| 493 | this.signals.destroy(); |
| 494 | this.signals = null; |
| 495 | this.removePreview(); |
| 496 | |
| 497 | Main.layoutManager.untrackChrome(this.overlay); |
| 498 | this.overlay.destroy(); |
| 499 | } |
| 500 | |
| 501 | /** |
| 502 | * Convenience method to return WorkArea for current monitor. |
nothing calls this directly
no test coverage detected