diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-05-07 20:08:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-07 20:08:57 +0200 |
commit | 35862b21d6c41effd92d0684f33ea880f62d151c (patch) | |
tree | a85517c1046bcb4323c39b2f5dce6f4963b454dc | |
parent | Merge pull request #10187 from Kelebek1/address_space (diff) | |
parent | yuzu/applets/qt_profile_select: connect double-click to accept() (diff) | |
download | yuzu-35862b21d6c41effd92d0684f33ea880f62d151c.tar yuzu-35862b21d6c41effd92d0684f33ea880f62d151c.tar.gz yuzu-35862b21d6c41effd92d0684f33ea880f62d151c.tar.bz2 yuzu-35862b21d6c41effd92d0684f33ea880f62d151c.tar.lz yuzu-35862b21d6c41effd92d0684f33ea880f62d151c.tar.xz yuzu-35862b21d6c41effd92d0684f33ea880f62d151c.tar.zst yuzu-35862b21d6c41effd92d0684f33ea880f62d151c.zip |
-rw-r--r-- | src/yuzu/applets/qt_profile_select.cpp | 1 |
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( scroll_area->setLayout(layout); connect(tree_view, &QTreeView::clicked, this, &QtProfileSelectionDialog::SelectUser); + connect(tree_view, &QTreeView::doubleClicked, this, &QtProfileSelectionDialog::accept); connect(controller_navigation, &ControllerNavigation::TriggerKeyboardEvent, [this](Qt::Key key) { if (!this->isActiveWindow()) { |