diff options
author | bunnei <bunneidev@gmail.com> | 2020-10-24 03:02:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-24 03:02:19 -0700 |
commit | ab052cf6847faf2c6f3ea5229b37626743b6a050 (patch) | |
tree | 6459c1897e06fd93035a3d960e0b2952cf51f0fd /src/yuzu/applets/profile_select.cpp | |
parent | 6f6d83befae058f19c512408e598d29ab6b389e1 (diff) | |
parent | 85b5b816cfa28371d9c78097eab22d6ec7438eee (diff) |
Merge pull request #4817 from Kewlan/open-single-save-location
main/profile_select: Don't ask for profile when there's only one.
Diffstat (limited to 'src/yuzu/applets/profile_select.cpp')
-rw-r--r-- | src/yuzu/applets/profile_select.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/yuzu/applets/profile_select.cpp b/src/yuzu/applets/profile_select.cpp index dca8835ed..68b76269d 100644 --- a/src/yuzu/applets/profile_select.cpp +++ b/src/yuzu/applets/profile_select.cpp @@ -114,6 +114,15 @@ QtProfileSelectionDialog::QtProfileSelectionDialog(QWidget* parent) QtProfileSelectionDialog::~QtProfileSelectionDialog() = default; +int QtProfileSelectionDialog::exec() { + // Skip profile selection when there's only one. + if (profile_manager->GetUserCount() == 1) { + user_index = 0; + return QDialog::Accepted; + } + QDialog::exec(); +} + void QtProfileSelectionDialog::accept() { QDialog::accept(); } |