diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-12-03 19:34:54 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-12-03 19:34:54 +0100 |
commit | 8eb1397a8a721695075de3eb03bf8d3e914d4e76 (patch) | |
tree | dbdc2a1f949e5f4ea050c0527e89cac74bcde5ea /api/logic/minecraft | |
parent | 4bae6fe491c8c92286c4ac9f39e9d4ac846d4f2f (diff) | |
download | MultiMC-8eb1397a8a721695075de3eb03bf8d3e914d4e76.tar MultiMC-8eb1397a8a721695075de3eb03bf8d3e914d4e76.tar.gz MultiMC-8eb1397a8a721695075de3eb03bf8d3e914d4e76.tar.lz MultiMC-8eb1397a8a721695075de3eb03bf8d3e914d4e76.tar.xz MultiMC-8eb1397a8a721695075de3eb03bf8d3e914d4e76.zip |
NOISSUE fix wrong look of checkboxes in the account list
Diffstat (limited to 'api/logic/minecraft')
-rw-r--r-- | api/logic/minecraft/auth/MojangAccountList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/logic/minecraft/auth/MojangAccountList.cpp b/api/logic/minecraft/auth/MojangAccountList.cpp index bcda1703..f3cbd582 100644 --- a/api/logic/minecraft/auth/MojangAccountList.cpp +++ b/api/logic/minecraft/auth/MojangAccountList.cpp @@ -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: |