()
| 188 | } |
| 189 | |
| 190 | private updateWindowControlsColor () { |
| 191 | // if windows and not using native frame, WCO does not exist, return. |
| 192 | if (this.hostApp.platform === Platform.Windows && this.config.store.appearance.frame === 'native') { |
| 193 | return |
| 194 | } |
| 195 | |
| 196 | this.electron.ipcRenderer.send('window-set-window-controls-color', this.config.store.terminal.colorScheme) |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | export { ElectronHostWindow, ElectronHostAppService, ElectronService } |