Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
閉じてもプロセスが完全に終了していない不具合を修正
  • Loading branch information
syado committed Jul 1, 2019
1 parent fe0044c commit 6633e0d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ app.on("ready", () => {
win.loadURL(`http://github.syado.net/LOL-TFT-tool/index.html`);
win.setAlwaysOnTop(true);
win.setIgnoreMouseEvents(false);
win.on('closed', () => { win = null; })
ipcMain.on('resize', (e, x, y) => {
win.setSize(x, y)
})
win.on('closed', () => {
win = null;
app.quit();
})
})
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lol-tft-tool",
"version": "1.0.0",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 6633e0d

Please sign in to comment.