NOISSUE fix wrong look of checkboxes in the account list
This commit is contained in:
parent
4bae6fe491
commit
8eb1397a8a
@ -167,7 +167,7 @@ QVariant MojangAccountList::data(const QModelIndex &index, int role) const
|
||||
switch (index.column())
|
||||
{
|
||||
case ActiveColumn:
|
||||
return account == m_activeAccount;
|
||||
return account == m_activeAccount ? Qt::Checked : Qt::Unchecked;
|
||||
}
|
||||
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user