1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-06 04:00:08 +00:00

Small change to method in RectanglePlacement and Drawable to use Rectangles instead of bare coordinates. Fix to make ValueTree::sort use an UndoManager, and to prevent different mouse buttons being interpreted as a double-click.

This commit is contained in:
Julian Storer 2010-10-18 16:04:32 +01:00
parent 85c32498dc
commit b80bb4bf38
15 changed files with 90 additions and 96 deletions

View file

@ -697,7 +697,7 @@ struct ItemSorter
void Project::Item::sortAlphabetically()
{
ItemSorter sorter;
node.sort (sorter);
node.sort (sorter, getUndoManager(), true);
}
bool Project::Item::addFile (const File& file, int insertIndex)