From 2b82ce7c84ce560a8a07013f50f4cbc7924ba3b7 Mon Sep 17 00:00:00 2001 From: reuk Date: Mon, 30 May 2022 16:57:14 +0100 Subject: [PATCH] DemoRunner: Avoid exposing unnecessary accessible component --- examples/DemoRunner/Source/UI/SettingsContent.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/DemoRunner/Source/UI/SettingsContent.h b/examples/DemoRunner/Source/UI/SettingsContent.h index 3cb72c14a9..9c3c713301 100644 --- a/examples/DemoRunner/Source/UI/SettingsContent.h +++ b/examples/DemoRunner/Source/UI/SettingsContent.h @@ -237,6 +237,11 @@ private: } private: + std::unique_ptr createAccessibilityHandler() override + { + return createIgnoredAccessibilityHandler (*this); + } + GraphicsSettingsGroup graphicsSettings; AudioSettingsGroup audioSettings; };