1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-30 02:50:05 +00:00

DemoRunner: Added AccessibilityDemo to demos list

This commit is contained in:
ed 2021-06-03 18:13:44 +01:00
parent d05cbc29dd
commit 0ff4123189

View file

@ -30,6 +30,9 @@
#include "../../../Assets/AudioLiveScrollingDisplay.h"
//==============================================================================
#if JUCE_MAC || JUCE_WINDOWS
#include "../../../GUI/AccessibilityDemo.h"
#endif
#include "../../../GUI/AnimationAppDemo.h"
#include "../../../GUI/AnimationDemo.h"
#include "../../../GUI/BouncingBallWavetableDemo.h"
@ -67,6 +70,9 @@
void registerDemos_Two() noexcept
{
#if JUCE_MAC || JUCE_WINDOWS
REGISTER_DEMO (AccessibilityDemo, GUI, false)
#endif
REGISTER_DEMO (AnimationAppDemo, GUI, false)
REGISTER_DEMO (AnimationDemo, GUI, false)
REGISTER_DEMO (BouncingBallWavetableDemo, GUI, false)