Browse Source

Fix for file searches returning non-precomposed unicode chars on OSX.

tags/2021-05-28
jules 12 years ago
parent
commit
74ed52e20e
1 changed files with 1 additions and 1 deletions
  1. +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();


Loading…
Cancel
Save