Fixed open log file in menu.

This commit is contained in:
Patrick Fic
2020-10-21 09:24:48 -07:00
parent 675a0280a8
commit 888fac2abf

View File

@@ -72,11 +72,17 @@ var menu = Menu.buildFromTemplate([
},
},
{
label: "Open Log File",
label: "Open Config File",
click() {
shell.openPath(store.path);
},
},
{
label: "Open Log File",
click() {
shell.openPath(path.join(app.getPath("appData"), "ImeX RPS\\logs"));
},
},
],
},
]);