Windows on ARM CI

This commit is contained in:
smartfridge 2022-11-19 20:00:56 +01:00
parent e5ab7a7232
commit dac886ecbd
2 changed files with 41 additions and 3 deletions

View file

@ -74,15 +74,15 @@ export function createSettingsWindow() {
setConfigBulk(args);
});
ipcMain.on("openStorageFolder", async (event) => {
shell.openPath(storagePath);
shell.showItemInFolder(storagePath);
await sleep(1000);
});
ipcMain.on("openThemesFolder", async (event) => {
shell.openPath(themesPath);
shell.showItemInFolder(themesPath);
await sleep(1000);
});
ipcMain.on("openPluginsFolder", async (event) => {
shell.openPath(pluginsPath);
shell.showItemInFolder(pluginsPath);
await sleep(1000);
});
ipcMain.on("getLangName", async (event) => {