mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 18:09:59 +03:00
NOISSUE fix wrong look of checkboxes in the account list
This commit is contained in:
parent
4bae6fe491
commit
8eb1397a8a
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue