From 4031509acdbcad83937990fd6dfd38616a93cc27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Farkas=20J=C3=B3zsef?= Date: Tue, 7 Feb 2017 19:24:59 +0100 Subject: [PATCH] Add app icon to electron Closes #134 --- electron/src/electron-main.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/electron/src/electron-main.ts b/electron/src/electron-main.ts index 5873942b..74b2278b 100644 --- a/electron/src/electron-main.ts +++ b/electron/src/electron-main.ts @@ -12,7 +12,8 @@ function createWindow() { height: 768, webPreferences: { nodeIntegration: true - } + }, + icon: 'images/favicon.ico' }); win.maximize();