From cd5bbf0f04696d6d44dae8c4a4e5f768a70019de Mon Sep 17 00:00:00 2001 From: Steve <110565931+jonesyUK@users.noreply.github.com> Date: Fri, 5 Aug 2022 08:02:04 -0700 Subject: Controller bugfixes in profile select (#8716) * Controller bugfixes in profile select, closes #8265 2 fixes for using a controller in profile select dialog. Pressing 'B' cancels the launch of the game Using controller to select a profile now correctly sets the index to use for the launch * Added brackets to if statements as requested. --- src/yuzu/applets/qt_profile_select.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/yuzu/applets/qt_profile_select.cpp') diff --git a/src/yuzu/applets/qt_profile_select.cpp b/src/yuzu/applets/qt_profile_select.cpp index 826c6c224..c8bcfb223 100644 --- a/src/yuzu/applets/qt_profile_select.cpp +++ b/src/yuzu/applets/qt_profile_select.cpp @@ -100,6 +100,7 @@ QtProfileSelectionDialog::QtProfileSelectionDialog(Core::HID::HIDCore& hid_core, } QKeyEvent* event = new QKeyEvent(QEvent::KeyPress, key, Qt::NoModifier); QCoreApplication::postEvent(tree_view, event); + SelectUser(tree_view->currentIndex()); }); const auto& profiles = profile_manager->GetAllUsers(); -- cgit v1.2.3