standard
This commit is contained in:
@@ -34,13 +34,13 @@ function openSeedDirectory () {
|
||||
log('openSeedDirectory')
|
||||
const opts = process.platform === 'darwin'
|
||||
? {
|
||||
title: 'Select a file or folder for the torrent.',
|
||||
properties: ['openFile', 'openDirectory']
|
||||
}
|
||||
title: 'Select a file or folder for the torrent.',
|
||||
properties: ['openFile', 'openDirectory']
|
||||
}
|
||||
: {
|
||||
title: 'Select a folder for the torrent.',
|
||||
properties: ['openDirectory']
|
||||
}
|
||||
title: 'Select a folder for the torrent.',
|
||||
properties: ['openDirectory']
|
||||
}
|
||||
showOpenSeed(opts)
|
||||
}
|
||||
|
||||
@@ -53,13 +53,13 @@ function openFiles () {
|
||||
log('openFiles')
|
||||
const opts = process.platform === 'darwin'
|
||||
? {
|
||||
title: 'Select a file or folder to add.',
|
||||
properties: ['openFile', 'openDirectory']
|
||||
}
|
||||
title: 'Select a file or folder to add.',
|
||||
properties: ['openFile', 'openDirectory']
|
||||
}
|
||||
: {
|
||||
title: 'Select a file to add.',
|
||||
properties: ['openFile']
|
||||
}
|
||||
title: 'Select a file to add.',
|
||||
properties: ['openFile']
|
||||
}
|
||||
setTitle(opts.title)
|
||||
const selectedPaths = electron.dialog.showOpenDialogSync(windows.main.win, opts)
|
||||
resetTitle()
|
||||
|
||||
@@ -198,9 +198,13 @@ function onAppOpen (newArgv) {
|
||||
// Development: 2 args, eg: electron .
|
||||
// Test: 4 args, eg: electron -r .../mocks.js .
|
||||
function sliceArgv (argv) {
|
||||
return argv.slice(config.IS_PRODUCTION ? 1
|
||||
: config.IS_TEST ? 4
|
||||
: 2)
|
||||
return argv.slice(
|
||||
config.IS_PRODUCTION
|
||||
? 1
|
||||
: config.IS_TEST
|
||||
? 4
|
||||
: 2
|
||||
)
|
||||
}
|
||||
|
||||
function processArgv (argv) {
|
||||
|
||||
Reference in New Issue
Block a user