diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-06-26 11:53:14 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2023-06-26 11:53:48 +0200 |
commit | 0aaec9ae4fb8a2f9e00d81acf85ab66e60ad2639 (patch) | |
tree | a22c5a42b50acab82cc708c1831c89d134ea1024 /launcher/ui | |
parent | d25452a64e86024fe3ea3b46fe9ef34c3d380080 (diff) | |
download | PrismLauncher-0aaec9ae4fb8a2f9e00d81acf85ab66e60ad2639.tar.gz PrismLauncher-0aaec9ae4fb8a2f9e00d81acf85ab66e60ad2639.tar.bz2 PrismLauncher-0aaec9ae4fb8a2f9e00d81acf85ab66e60ad2639.zip |
chore: remove obsolete macOS warning
We don't support that macOS version. This check also never worked, as we
never set the platform to that value.
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher/ui')
-rw-r--r-- | launcher/ui/pages/global/AccountListPage.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/launcher/ui/pages/global/AccountListPage.cpp b/launcher/ui/pages/global/AccountListPage.cpp index 278f45c4..fced5ff4 100644 --- a/launcher/ui/pages/global/AccountListPage.cpp +++ b/launcher/ui/pages/global/AccountListPage.cpp @@ -159,19 +159,6 @@ void AccountListPage::on_actionAddMojang_triggered() void AccountListPage::on_actionAddMicrosoft_triggered() { - if(BuildConfig.BUILD_PLATFORM == "osx64") { - CustomMessageBox::selectable( - this, - tr("Microsoft Accounts not available"), - //: %1 refers to the launcher itself - tr( - "Microsoft accounts are only usable on macOS 10.13 or newer, with fully updated %1.\n\n" - "Please update both your operating system and %1." - ).arg(BuildConfig.LAUNCHER_DISPLAYNAME), - QMessageBox::Warning - )->exec(); - return; - } MinecraftAccountPtr account = MSALoginDialog::newAccount( this, tr("Please enter your Mojang account email and password to add your account.") |