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

Added an alertwindow font setting to the lookandfeel class. Made sure the ComponentListener::componentChildrenChanged is called when component z-order changes. Fix for CoreMidi output timestamps.

This commit is contained in:
Julian Storer 2011-01-06 15:32:11 +00:00
parent 7478c7f9ab
commit e2ef26e91c
14 changed files with 124 additions and 105 deletions

View file

@ -125,7 +125,7 @@ void AlertWindow::setMessage (const String& message)
{
text = newMessage;
font.setHeight (15.0f);
font = getLookAndFeel().getAlertWindowMessageFont();
Font titleFont (font.getHeight() * 1.1f, Font::bold);
textLayout.setText (getName() + "\n\n", titleFont);