diff options
author | flow <thiagodonato300@gmail.com> | 2022-02-23 14:34:51 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-23 14:34:51 -0300 |
commit | 38f12c50f773ed7ec54bc8ea11691352aef81aee (patch) | |
tree | a68ceb5e334a3725d970a283e99d5c6e8e48f570 /launcher/minecraft/auth/AccountList.cpp | |
parent | f8b0d6453ae81488ddfd4c83b329e2c88787c49e (diff) | |
parent | 9e35560554eb089370ba487e5b6265b4bd8e739a (diff) | |
download | PrismLauncher-38f12c50f773ed7ec54bc8ea11691352aef81aee.tar.gz PrismLauncher-38f12c50f773ed7ec54bc8ea11691352aef81aee.tar.bz2 PrismLauncher-38f12c50f773ed7ec54bc8ea11691352aef81aee.zip |
Merge branch 'PolyMC:develop' into develop
Diffstat (limited to 'launcher/minecraft/auth/AccountList.cpp')
-rw-r--r-- | launcher/minecraft/auth/AccountList.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/launcher/minecraft/auth/AccountList.cpp b/launcher/minecraft/auth/AccountList.cpp index 04470e1c..e404cdda 100644 --- a/launcher/minecraft/auth/AccountList.cpp +++ b/launcher/minecraft/auth/AccountList.cpp @@ -291,6 +291,9 @@ QVariant AccountList::data(const QModelIndex &index, int role) const case AccountState::Expired: { return tr("Expired", "Account status"); } + case AccountState::Disabled: { + return tr("Disabled", "Account status"); + } case AccountState::Gone: { return tr("Gone", "Account status"); } |