[ Electron ] Tray Menu 가 사라지는 현상
Electron 으로 Desktop 앱을 만드는 과정에서 자꾸 Tray 아이콘이 사라지는 현상이 발생하는 경우가 있는데, 이런 경우는 아래와 같이 수정하면 대부분 해결됩니다. 해당 코드를... const {app, Tray} = require('electron'); app.on('ready', () => { const tray = new Tray('/path/to/icon.png'); tray.setTitle('hello world'); }); 아래와 같이 수정 const {app, Tray} = require('electron'); let tray = null; app.on('ready', () => { tray = new Tray('/path/to/icon.png'); tray.setTitle('he..
Electron
2018. 6. 11. 00:13