Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
nerrons
purr-data
Commits
d8bad5c5
Commit
d8bad5c5
authored
Aug 13, 2016
by
Jonathan Wilkes
Browse files
fix problem opening Pd files with spaces on Windows
parent
e2179f6e
Changes
1
Hide whitespace changes
Inline
Side-by-side
pd/nw/pdgui.js
View file @
d8bad5c5
...
...
@@ -747,8 +747,8 @@ function doc_open (dir, basename) {
open_html
(
path
.
join
(
norm_path
,
basename
));
}
else
{
pdsend
(
"
pd open
"
,
enquote
(
basename
),
defunkify_windows_path
(
enquote
(
norm_path
)));
pdsend
(
"
pd open
"
,
enquote
(
defunkify_windows_path
(
basename
)
)
,
enquote
(
defunkify_windows_path
(
norm_path
)));
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment