main/profile_select: Don't prompt for profile selection when only one is available
This commit is contained in:
parent
a0ee597b19
commit
a59ad9246b
|
@ -278,6 +278,9 @@ GMainWindow::~GMainWindow() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void GMainWindow::ProfileSelectorSelectProfile() {
|
void GMainWindow::ProfileSelectorSelectProfile() {
|
||||||
|
const Service::Account::ProfileManager manager;
|
||||||
|
int index = 0;
|
||||||
|
if (manager.GetUserCount() != 1) {
|
||||||
QtProfileSelectionDialog dialog(this);
|
QtProfileSelectionDialog dialog(this);
|
||||||
dialog.setWindowFlags(Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint |
|
dialog.setWindowFlags(Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint |
|
||||||
Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint);
|
Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint);
|
||||||
|
@ -286,9 +289,10 @@ void GMainWindow::ProfileSelectorSelectProfile() {
|
||||||
emit ProfileSelectorFinishedSelection(std::nullopt);
|
emit ProfileSelectorFinishedSelection(std::nullopt);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
index = dialog.GetIndex();
|
||||||
|
}
|
||||||
|
|
||||||
Service::Account::ProfileManager manager;
|
const auto uuid = manager.GetUser(static_cast<std::size_t>(index));
|
||||||
const auto uuid = manager.GetUser(static_cast<std::size_t>(dialog.GetIndex()));
|
|
||||||
if (!uuid.has_value()) {
|
if (!uuid.has_value()) {
|
||||||
emit ProfileSelectorFinishedSelection(std::nullopt);
|
emit ProfileSelectorFinishedSelection(std::nullopt);
|
||||||
return;
|
return;
|
||||||
|
|
Reference in New Issue