This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Fixed a bug in File relative path parsing.
tags/2021-05-28
jules
11 years ago
parent
fc772941d6
commit
9a193b55f2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_core/files/juce_File.cpp
+ 1
- 1
modules/juce_core/files/juce_File.cpp
View File
@@ -380,7 +380,7 @@ File File::getChildFile (StringRef relativePath) const
if (lastSlash >= 0)
path = path.substring (0, lastSlash);
relativePath = relativePath.text + 3;
relativePath = relativePath.text +
(thirdChar == 0 ? 2 :
3
)
;
}
else
{
Write
Preview
Loading…
Cancel
Save