diff options
author | QGJ <qgj@gmx.net> | 2023-05-07 18:05:42 +0200 |
---|---|---|
committer | QGJ <qgj@gmx.net> | 2023-05-07 18:05:42 +0200 |
commit | 4366a21eaed655bdbff8cf8c94a1a9796d36aafa (patch) | |
tree | a85517c1046bcb4323c39b2f5dce6f4963b454dc /src | |
parent | Merge pull request #10187 from Kelebek1/address_space (diff) | |
download | yuzu-4366a21eaed655bdbff8cf8c94a1a9796d36aafa.tar yuzu-4366a21eaed655bdbff8cf8c94a1a9796d36aafa.tar.gz yuzu-4366a21eaed655bdbff8cf8c94a1a9796d36aafa.tar.bz2 yuzu-4366a21eaed655bdbff8cf8c94a1a9796d36aafa.tar.lz yuzu-4366a21eaed655bdbff8cf8c94a1a9796d36aafa.tar.xz yuzu-4366a21eaed655bdbff8cf8c94a1a9796d36aafa.tar.zst yuzu-4366a21eaed655bdbff8cf8c94a1a9796d36aafa.zip |
Diffstat (limited to 'src')
-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()) { |