From 951b13ed976f4fd56bdabf8ccc4ae1cedba60a29 Mon Sep 17 00:00:00 2001 From: thrust26 Date: Sat, 4 May 2019 12:23:03 +0200 Subject: [PATCH] fix settings not opening in launcher --- src/gui/LauncherDialog.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/LauncherDialog.cxx b/src/gui/LauncherDialog.cxx index 6bd981cb5..2e4c44f6d 100644 --- a/src/gui/LauncherDialog.cxx +++ b/src/gui/LauncherDialog.cxx @@ -503,7 +503,7 @@ void LauncherDialog::handleJoyDown(int stick, int button) if (button == 1 && (e == Event::UICancel || e == Event::NoType)) myGlobalProps->open(); - if (button == 3 && e == Event::NoType) + if (button == 3 && (e == Event::Event::UITabNext || e == Event::NoType)) openSettings(); else Dialog::handleJoyDown(stick, button);