()
| 251 | } |
| 252 | |
| 253 | showPrimary(): void { |
| 254 | if (!this.viewController) return; |
| 255 | this.viewController.showColumn(UISplitViewControllerColumn.Primary); |
| 256 | this._invalidateAllChildLayouts(); |
| 257 | // Attach button after a short delay to ensure the column is visible |
| 258 | setTimeout(() => this.attachPrimaryButton(), 100); |
| 259 | } |
| 260 | |
| 261 | hidePrimary(): void { |
| 262 | if (!this.viewController) return; |
no test coverage detected