If i set LookAndFeel like so
LookAndFeel::setDefaultLookAndFeel (&gekonLookAndFeel);
i get calls to getTypefaceForFont () and it’s all nice
however if i use
LookAndFeel::setDefaultLookAndFeel (&junoLookAndFeel);
// and later
myComponent->setLookAndFeel (&gekonLookAndFeel);
myComponent get’s the new gekon look and feel minus the calls to getTypefaceForFont (), is this ok and the font call will be only in the default LookAndFeel ?