diff options
author | Gingeh <39150378+Gingeh@users.noreply.github.com> | 2022-06-29 19:58:41 +1000 |
---|---|---|
committer | Gingeh <39150378+Gingeh@users.noreply.github.com> | 2022-06-29 19:58:41 +1000 |
commit | 84bd5ace6cca2c9cd810426bf7cff12941694624 (patch) | |
tree | db96735436601b8feb8390b22b255f9fa5d8fa1c | |
parent | 63589d2ba97bc3fa5b4fc2fdd30a32a034aa9b50 (diff) | |
download | PrismLauncher-84bd5ace6cca2c9cd810426bf7cff12941694624.tar.gz PrismLauncher-84bd5ace6cca2c9cd810426bf7cff12941694624.tar.bz2 PrismLauncher-84bd5ace6cca2c9cd810426bf7cff12941694624.zip |
Move account checkboxes to the profile column (oops)
-rw-r--r-- | launcher/minecraft/auth/AccountList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/minecraft/auth/AccountList.cpp b/launcher/minecraft/auth/AccountList.cpp index e05aa526..526cdced 100644 --- a/launcher/minecraft/auth/AccountList.cpp +++ b/launcher/minecraft/auth/AccountList.cpp @@ -349,7 +349,7 @@ QVariant AccountList::data(const QModelIndex &index, int role) const case Qt::CheckStateRole: switch (index.column()) { - case NameColumn: + case ProfileNameColumn: return account == m_defaultAccount ? Qt::Checked : Qt::Unchecked; } |