1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-13 00:04:19 +00:00

RTAS mac window position fix. Introjucer fixes for Windows.

This commit is contained in:
Julian Storer 2011-08-23 15:02:11 +01:00
parent 57a0fd5cef
commit d86d68446c
21 changed files with 112 additions and 61 deletions

View file

@ -429,14 +429,15 @@ void LibraryModule::findWildcardMatches (const File& localModuleFolder, const St
DirectoryIterator iter (localModuleFolder.getChildFile (path), false, wildCard);
while (iter.next())
tempList.addSorted (sorter, iter.getFile());
if (! iter.getFile().isHidden())
tempList.addSorted (sorter, iter.getFile());
result.addArray (tempList);
}
void LibraryModule::addFileWithGroups (Project::Item& group, const RelativePath& file, const String& path) const
{
const int slash = path.indexOfChar ('/');
const int slash = path.indexOfChar (File::separator);
if (slash >= 0)
{