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
Fix for file searches returning non-precomposed unicode chars on OSX.
tags/2021-05-28
jules
12 years ago
parent
6018f1df3d
commit
74ed52e20e
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/native/juce_mac_Files.mm
+ 1
- 1
modules/juce_core/native/juce_mac_Files.mm
View File
@@ -356,7 +356,7 @@ public:
return false;
[enumerator skipDescendents];
filenameFound = nsStringToJuce (file);
filenameFound = nsStringToJuce (file)
.convertToPrecomposedUnicode()
;
if (wildcardUTF8 == nullptr)
wildcardUTF8 = wildCard.toUTF8();
Write
Preview
Loading…
Cancel
Save