From 0ff41231896df13ac800459d403a01abc61b4da8 Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 3 Jun 2021 18:13:44 +0100 Subject: [PATCH] DemoRunner: Added AccessibilityDemo to demos list --- examples/DemoRunner/Source/Demos/DemoPIPs2.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp b/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp index a1759e6558..f123526633 100644 --- a/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp +++ b/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp @@ -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)