mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-22 13:09:41 +00:00
Fixed passed indexes for object deletion #5384
This commit is contained in:
parent
b8c467e2e0
commit
8a8b4986da
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ bool CSMWorld::IdTable::setData (const QModelIndex &index, const QVariant &value
|
||||||
// views that the whole row has changed.
|
// views that the whole row has changed.
|
||||||
|
|
||||||
emit dataChanged(this->index(index.row(), 0),
|
emit dataChanged(this->index(index.row(), 0),
|
||||||
this->index(index.row(), columnCount(index.parent())));
|
this->index(index.row(), columnCount(index.parent()) - 1));
|
||||||
|
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue