1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-25 02:04:23 +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

@ -60,6 +60,11 @@ const File FileListComponent::getSelectedFile (int index) const
return fileList.getFile (getSelectedRow (index));
}
void FileListComponent::deselectAllFiles()
{
deselectAllRows();
}
void FileListComponent::scrollToTop()
{
getVerticalScrollBar()->setCurrentRangeStart (0);