* Add the settings menu to the given window. * * @param window The settings browser window.
(window: BrowserWindow)
| 174 | * @param window The settings browser window. |
| 175 | */ |
| 176 | addSettingMenu(window: BrowserWindow): void { |
| 177 | const { windowMenus } = this |
| 178 | const menu = this._buildSettingMenu() |
| 179 | windowMenus.set(window.id, menu) |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * Add the editor menu to the given window. |
no test coverage detected