aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGingeh <39150378+Gingeh@users.noreply.github.com>2022-06-29 19:58:41 +1000
committerGingeh <39150378+Gingeh@users.noreply.github.com>2022-06-29 19:58:41 +1000
commit84bd5ace6cca2c9cd810426bf7cff12941694624 (patch)
treedb96735436601b8feb8390b22b255f9fa5d8fa1c
parent63589d2ba97bc3fa5b4fc2fdd30a32a034aa9b50 (diff)
downloadPrismLauncher-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.cpp2
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;
}