* Create a new setting window.
(category?: string | null)
| 493 | * Create a new setting window. |
| 494 | */ |
| 495 | private _createSettingWindow(category?: string | null): void { |
| 496 | const setting = new SettingWindow(this._accessor) |
| 497 | setting.createWindow(category ?? null) |
| 498 | this._windowManager.add(setting) |
| 499 | if (this._windowManager.windowCount === 1) { |
| 500 | this._accessor.menu.setActiveWindow(setting.id) |
| 501 | } |
| 502 | } |
| 503 | |
| 504 | private _openFilesToOpen(): void { |
| 505 | this._openPathList(this._openFilesCache, false) |
no test coverage detected