fixes for Electron 9
This commit is contained in:
@@ -141,9 +141,9 @@ function init () {
|
||||
* Shell
|
||||
*/
|
||||
|
||||
ipc.on('openItem', (e, ...args) => {
|
||||
ipc.on('openPath', (e, ...args) => {
|
||||
const shell = require('./shell')
|
||||
shell.openItem(...args)
|
||||
shell.openPath(...args)
|
||||
})
|
||||
ipc.on('showItemInFolder', (e, ...args) => {
|
||||
const shell = require('./shell')
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
module.exports = {
|
||||
openExternal,
|
||||
openItem,
|
||||
openPath,
|
||||
showItemInFolder,
|
||||
moveItemToTrash
|
||||
}
|
||||
@@ -19,9 +19,9 @@ function openExternal (url) {
|
||||
/**
|
||||
* Open the given file in the desktop’s default manner.
|
||||
*/
|
||||
function openItem (path) {
|
||||
log(`openItem: ${path}`)
|
||||
electron.shell.openItem(path)
|
||||
function openPath (path) {
|
||||
log(`openPath: ${path}`)
|
||||
electron.shell.openPath(path)
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user