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

Added ScrollBar::parentHierarchyChanged() to correctly handle inherited lookAndFeel changes.

This commit is contained in:
Timur Doumler 2015-07-21 14:34:51 +01:00
parent af643bb49d
commit 5fc9f44581
2 changed files with 7 additions and 0 deletions

View file

@ -331,6 +331,11 @@ void ScrollBar::resized()
updateThumbPosition();
}
void ScrollBar::parentHierarchyChanged()
{
lookAndFeelChanged();
}
void ScrollBar::mouseDown (const MouseEvent& e)
{
isDraggingThumb = false;