Selaa lähdekoodia

fix(electron): open in directory on Win

charlie 4 vuotta sitten
vanhempi
sitoutus
dc4e9436d5
1 muutettua tiedostoa jossa 5 lisäystä ja 1 poistoa
  1. 5 1
      resources/js/preload.js

+ 5 - 1
resources/js/preload.js

@@ -55,7 +55,11 @@ contextBridge.exposeInMainWorld('apis', {
   },
 
   showItemInFolder (fullpath) {
-    shell.showItemInFolder(fullpath)
+    if (IS_WIN32) {
+      shell.openPath(path.dirname(fullpath))
+    } else {
+      shell.showItemInFolder(fullpath)
+    }
   },
 
   /**