faster tab switching

This commit is contained in:
Eugene Pankov
2018-09-20 11:42:51 +02:00
parent c8b40647a9
commit cec349d021
5 changed files with 19 additions and 6 deletions

View File

@@ -182,6 +182,10 @@ export class Window {
ipcMain.on('window-set-vibrancy', (_event, enabled) => {
this.setVibrancy(enabled)
})
ipcMain.on('window-set-title', (_event, title) => {
this.window.setTitle(title)
})
}
private destroy () {