Merge remote-tracking branch 'upstream/develop' into resource-meta
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
commit
f4940e26c6
313 changed files with 14697 additions and 2921 deletions
|
@ -102,6 +102,11 @@ QVariant TexturePackFolderModel::data(const QModelIndex& index, int role) const
|
|||
}
|
||||
return {};
|
||||
}
|
||||
case Qt::SizeHintRole:
|
||||
if (column == ImageColumn) {
|
||||
return QSize(32, 32);
|
||||
}
|
||||
return {};
|
||||
case Qt::CheckStateRole:
|
||||
if (column == ActiveColumn) {
|
||||
return m_resources[row]->enabled() ? Qt::Checked : Qt::Unchecked;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue