Fix mod list checkboxes
This commit is contained in:
parent
116a6458b5
commit
8fa69307d2
1 changed files with 1 additions and 1 deletions
|
@ -416,7 +416,7 @@ QVariant ModList::data(const QModelIndex &index, int role) const
|
|||
switch (index.column())
|
||||
{
|
||||
case ActiveColumn:
|
||||
return mods[row].enabled();
|
||||
return mods[row].enabled() ? Qt::Checked: Qt::Unchecked;
|
||||
default:
|
||||
return QVariant();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue