1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 17:19:56 +00:00

Fix some sub-tables becoming uneditable since commit 80869d

(cherry picked from commit 4af469511d)

Conflicts:
	apps/opencs/model/world/refidadapterimp.hpp
This commit is contained in:
cc9cii 2015-11-02 06:43:20 +11:00
parent a19a1dabe2
commit 6d38d97470

View file

@ -1983,7 +1983,7 @@ namespace CSMWorld
int index) const int index) const
{ {
if (column==mLevList.mLevList || column == mLevList.mNestedListLevList) if (column==mLevList.mLevList || column == mLevList.mNestedListLevList)
return true; // to show nested tables in dialogue subview, see IdTree::hasChildren() return QVariant::fromValue(ColumnBase::TableEdit_Full);
return BaseRefIdAdapter<RecordT>::getData (column, data, index); return BaseRefIdAdapter<RecordT>::getData (column, data, index);
} }