Move account checkboxes to the profile column (oops)

This commit is contained in:
Gingeh 2022-06-29 19:58:41 +10:00
parent 63589d2ba9
commit 84bd5ace6c

View File

@ -349,7 +349,7 @@ QVariant AccountList::data(const QModelIndex &index, int role) const
case Qt::CheckStateRole: case Qt::CheckStateRole:
switch (index.column()) switch (index.column())
{ {
case NameColumn: case ProfileNameColumn:
return account == m_defaultAccount ? Qt::Checked : Qt::Unchecked; return account == m_defaultAccount ? Qt::Checked : Qt::Unchecked;
} }