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

Made LookAndFeel_V3 the default.

This commit is contained in:
jules 2015-11-02 11:06:15 +00:00
parent 12447ba38f
commit ba672f03fb

View file

@ -92,7 +92,7 @@ LookAndFeel& Desktop::getDefaultLookAndFeel() noexcept
if (currentLookAndFeel == nullptr)
{
if (defaultLookAndFeel == nullptr)
defaultLookAndFeel = new LookAndFeel_V2();
defaultLookAndFeel = new LookAndFeel_V3();
currentLookAndFeel = defaultLookAndFeel;
}