Skip to content

Commit

Permalink
-Quick fix for faulty context menu integration on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyalBingBong committed Mar 4, 2017
1 parent 9bf95cd commit c724a8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OS/win/registry.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export function installContextMenu(callback) {
args = [keyPath, '/v', 'Icon', '/d', execPath]
addToRegistry(args, () => {
let kp = format('%s\\command', keyPath)
let pe = format('"%s" -meview-open %s"', process.execPath, arg)
let pe = format('"%s" -meview-open \"%s\"', process.execPath, arg)
args = [ kp, '/ve', '/d', pe]
addToRegistry(args, callback)
})
Expand Down

0 comments on commit c724a8c

Please sign in to comment.