1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 06:53:53 +00:00

Change flag for base land textures

This commit is contained in:
Kyle Cooley 2017-09-22 22:59:50 -04:00
parent 054e6a780e
commit 3981f79d38

View file

@ -332,7 +332,7 @@ Qt::ItemFlags CSMWorld::LandTextureIdTable::flags(const QModelIndex& index) cons
Qt::ItemFlags flags = IdTable::flags(index); Qt::ItemFlags flags = IdTable::flags(index);
if (!idCollection()->getRecord(index.row()).isModified()) if (!idCollection()->getRecord(index.row()).isModified())
flags &= ~Qt::ItemIsEditable; flags &= ~Qt::ItemIsEnabled;
return flags; return flags;
} }