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

Minor fixes to LassoComponent, ReferenceCountedArray, Plugin demo resizing. Added deselect method to FileBrowserComponent, made TreeViews update widths when scrolling sideways. Jucer development.

This commit is contained in:
Julian Storer 2010-04-29 10:46:26 +01:00
parent 49b47cc866
commit 636ed22863
30 changed files with 509 additions and 378 deletions

View file

@ -195,6 +195,11 @@ const File FileBrowserComponent::getHighlightedFile() const throw()
return fileListComponent->getSelectedFile (0);
}
void FileBrowserComponent::deselectAllFiles()
{
fileListComponent->deselectAllFiles();
}
//==============================================================================
bool FileBrowserComponent::isFileSuitable (const File& file) const
{