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

Fix for treeview indent X positions when dragged off the bottom.

This commit is contained in:
jules 2015-02-16 14:54:58 +00:00
parent 7cfcf7940d
commit 2a120a0f72

View file

@ -931,6 +931,7 @@ struct TreeView::InsertPoint
item = root;
insertIndex = root->getNumSubItems();
pos = root->getItemPosition (true).getBottomLeft();
pos.x += root->getIndentX();
}
}