From 872a9b95c7b0c4be57dc77c63a097972132f3393 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Wed, 31 Mar 2021 01:13:41 +1000 Subject: [PATCH] Android: Remove quick menu hotkey It has its own quick menu hotkey. --- src/frontend-common/common_host_interface.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontend-common/common_host_interface.cpp b/src/frontend-common/common_host_interface.cpp index c35e574d0..a87dba177 100644 --- a/src/frontend-common/common_host_interface.cpp +++ b/src/frontend-common/common_host_interface.cpp @@ -1767,11 +1767,13 @@ static void DisplayHotkeyBlockedByChallengeModeMessage() void CommonHostInterface::RegisterGeneralHotkeys() { +#ifndef __ANDROID__ RegisterHotkey(StaticString(TRANSLATABLE("Hotkeys", "General")), StaticString("OpenQuickMenu"), TRANSLATABLE("Hotkeys", "Open Quick Menu"), [this](bool pressed) { if (pressed && m_fullscreen_ui_enabled) FullscreenUI::OpenQuickMenu(); }); +#endif RegisterHotkey(StaticString(TRANSLATABLE("Hotkeys", "General")), StaticString("FastForward"), TRANSLATABLE("Hotkeys", "Fast Forward"), [this](bool pressed) { SetFastForwardEnabled(pressed); });