Revert "CommonHostInterface: Use key-release to open quick menu"

This reverts commit e0161c3bb2.
This commit is contained in:
Silent 2021-03-08 20:16:38 +01:00
parent 4e2ee86c1a
commit 3849ec449b
No known key found for this signature in database
GPG key ID: AE53149BB0C45AF1

View file

@ -1789,7 +1789,7 @@ void CommonHostInterface::RegisterGeneralHotkeys()
{
RegisterHotkey(StaticString(TRANSLATABLE("Hotkeys", "General")), StaticString("OpenQuickMenu"),
TRANSLATABLE("Hotkeys", "Open Quick Menu"), [this](bool pressed) {
if (!pressed && m_fullscreen_ui_enabled)
if (pressed && m_fullscreen_ui_enabled)
FullscreenUI::OpenQuickMenu();
});