summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar liamwhite2023-05-07 14:08:57 -0400
committerGravatar GitHub2023-05-07 14:08:57 -0400
commit35862b21d6c41effd92d0684f33ea880f62d151c (patch)
treea85517c1046bcb4323c39b2f5dce6f4963b454dc /src
parentMerge pull request #10187 from Kelebek1/address_space (diff)
parentyuzu/applets/qt_profile_select: connect double-click to accept() (diff)
downloadyuzu-35862b21d6c41effd92d0684f33ea880f62d151c.tar.gz
yuzu-35862b21d6c41effd92d0684f33ea880f62d151c.tar.xz
yuzu-35862b21d6c41effd92d0684f33ea880f62d151c.zip
Merge pull request #10189 from Qigo42/master
yuzu/applets/qt_profile_select: connect double-click to accept()
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/applets/qt_profile_select.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/applets/qt_profile_select.cpp b/src/yuzu/applets/qt_profile_select.cpp
index 2448e46b6..1f3f23038 100644
--- a/src/yuzu/applets/qt_profile_select.cpp
+++ b/src/yuzu/applets/qt_profile_select.cpp
@@ -95,6 +95,7 @@ QtProfileSelectionDialog::QtProfileSelectionDialog(
95 scroll_area->setLayout(layout); 95 scroll_area->setLayout(layout);
96 96
97 connect(tree_view, &QTreeView::clicked, this, &QtProfileSelectionDialog::SelectUser); 97 connect(tree_view, &QTreeView::clicked, this, &QtProfileSelectionDialog::SelectUser);
98 connect(tree_view, &QTreeView::doubleClicked, this, &QtProfileSelectionDialog::accept);
98 connect(controller_navigation, &ControllerNavigation::TriggerKeyboardEvent, 99 connect(controller_navigation, &ControllerNavigation::TriggerKeyboardEvent,
99 [this](Qt::Key key) { 100 [this](Qt::Key key) {
100 if (!this->isActiveWindow()) { 101 if (!this->isActiveWindow()) {