diff options
author | Lenny McLennington <lennymclennington@protonmail.com> | 2021-12-20 02:41:08 +0000 |
---|---|---|
committer | Lenny McLennington <lennymclennington@protonmail.com> | 2021-12-20 02:57:13 +0000 |
commit | e6246a9306567f5646d3bc1971a1c5c4cf8f4f54 (patch) | |
tree | 17a4e24951924f1cfcda2558bf5d13bd620a5625 /launcher/ui/pages/global/AccountListPage.cpp | |
parent | dcb57f199531e45ac4bf947eaf8cbfe5e66fce23 (diff) | |
download | PrismLauncher-e6246a9306567f5646d3bc1971a1c5c4cf8f4f54.tar.gz PrismLauncher-e6246a9306567f5646d3bc1971a1c5c4cf8f4f54.tar.bz2 PrismLauncher-e6246a9306567f5646d3bc1971a1c5c4cf8f4f54.zip |
Move MSA Client ID to the same place as the others
MSA Client ID has been moved to CMakeLists.txt, and defaults to the
Client ID for the PolyMC application.
Removed secrets/notsecrets library, replace with (temporary?)
program_info subdirectory.
Diffstat (limited to 'launcher/ui/pages/global/AccountListPage.cpp')
-rw-r--r-- | launcher/ui/pages/global/AccountListPage.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/launcher/ui/pages/global/AccountListPage.cpp b/launcher/ui/pages/global/AccountListPage.cpp index d3eb2655..87fcac86 100644 --- a/launcher/ui/pages/global/AccountListPage.cpp +++ b/launcher/ui/pages/global/AccountListPage.cpp @@ -37,8 +37,6 @@ #include "BuildConfig.h" -#include "Secrets.h" - AccountListPage::AccountListPage(QWidget *parent) : QMainWindow(parent), ui(new Ui::AccountListPage) { @@ -74,7 +72,7 @@ AccountListPage::AccountListPage(QWidget *parent) updateButtonStates(); // Xbox authentication won't work without a client identifier, so disable the button if it is missing - ui->actionAddMicrosoft->setVisible(Secrets::hasMSAClientID()); + ui->actionAddMicrosoft->setVisible(BuildConfig.MSA_CLIENT_ID.size() != 0); } AccountListPage::~AccountListPage() |