diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-08-08 20:49:49 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-08-08 21:16:37 +0200 |
commit | f873cd5b1aa17fe8119f27cc5d9b9eba10bd42bf (patch) | |
tree | 34ddbf24cfed468811c289f2dbf790148ad9c337 /launcher/ui/pages/global/AccountListPage.cpp | |
parent | 75f92de8f8517142289dc76d071cfb4fa724598c (diff) | |
download | PrismLauncher-f873cd5b1aa17fe8119f27cc5d9b9eba10bd42bf.tar.gz PrismLauncher-f873cd5b1aa17fe8119f27cc5d9b9eba10bd42bf.tar.bz2 PrismLauncher-f873cd5b1aa17fe8119f27cc5d9b9eba10bd42bf.zip |
refactor: store current capabilities
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher/ui/pages/global/AccountListPage.cpp')
-rw-r--r-- | launcher/ui/pages/global/AccountListPage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/pages/global/AccountListPage.cpp b/launcher/ui/pages/global/AccountListPage.cpp index fcc43add..a4f4dfb9 100644 --- a/launcher/ui/pages/global/AccountListPage.cpp +++ b/launcher/ui/pages/global/AccountListPage.cpp @@ -96,7 +96,7 @@ AccountListPage::AccountListPage(QWidget *parent) updateButtonStates(); // Xbox authentication won't work without a client identifier, so disable the button if it is missing - if (~APPLICATION->currentCapabilities() & Application::SupportsMSA) { + if (~APPLICATION->capabilities() & Application::SupportsMSA) { ui->actionAddMicrosoft->setVisible(false); ui->actionAddMicrosoft->setToolTip(tr("No Microsoft Authentication client ID was set.")); } |