()
| 493 | } |
| 494 | |
| 495 | private finalizePositioning() { |
| 496 | if (this.isDestroyed()) { |
| 497 | return; |
| 498 | } |
| 499 | const curBounds = this.getContentBounds(); |
| 500 | this.activeTabView?.positionTabOnScreen(curBounds); |
| 501 | for (const tabView of this.allLoadedTabViews.values()) { |
| 502 | if (tabView == this.activeTabView) { |
| 503 | continue; |
| 504 | } |
| 505 | tabView?.positionTabOffScreen(curBounds); |
| 506 | } |
| 507 | } |
| 508 | |
| 509 | async queueCreateTab() { |
| 510 | await this._queueActionInternal({ op: "createtab" }); |
no test coverage detected