From aa4684077df5b05bc3afe0c99bbdf54edbe49dee Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 21 Nov 2020 13:28:04 -0600 Subject: [PATCH] Fix inability to open app menu with gamepad --- app/gui/AppView.qml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app/gui/AppView.qml b/app/gui/AppView.qml index a6cc77dc..bcecd8c7 100644 --- a/app/gui/AppView.qml +++ b/app/gui/AppView.qml @@ -225,11 +225,8 @@ CenteredGridView { } Keys.onMenuPressed: { - if (model.running) { - // This will be keyboard/gamepad driven so use - // open() instead of popup() - appContextMenu.open() - } + // This will be keyboard/gamepad driven so use open() instead of popup() + appContextMenu.open() } function doQuitGame() {