1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-24 01:54:22 +00:00

Added Intel compiler support for atomics. Small Jucer fix for file browsing.

This commit is contained in:
Julian Storer 2010-03-25 18:05:41 +00:00
parent a728139698
commit 73210e73dc
5 changed files with 139 additions and 84 deletions

View file

@ -62,7 +62,8 @@ const File ProjectTreeViewBase::getFile() const
void ProjectTreeViewBase::browseToAddExistingFiles()
{
FileChooser fc ("Add Files to Jucer Project", getFile(), String::empty, false);
const File location (item.isGroup() ? item.determineGroupFolder() : getFile());
FileChooser fc ("Add Files to Jucer Project", location, String::empty, false);
if (fc.browseForMultipleFilesOrDirectories())
{