mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-01 20:06:40 +00:00
added missing flagAsModified calls
This commit is contained in:
parent
f28fa9fc16
commit
2cb106f6ad
2 changed files with 3 additions and 0 deletions
|
@ -319,6 +319,8 @@ void CSVRender::PagedWorldspaceWidget::clearSelection (int elementMask)
|
|||
for (std::map<CSMWorld::CellCoordinates, Cell *>::iterator iter = mCells.begin();
|
||||
iter!=mCells.end(); ++iter)
|
||||
iter->second->setSelection (elementMask, Cell::Selection_Clear);
|
||||
|
||||
flagAsModified();
|
||||
}
|
||||
|
||||
CSVWidget::SceneToolToggle *CSVRender::PagedWorldspaceWidget::makeControlVisibilitySelector (
|
||||
|
|
|
@ -105,6 +105,7 @@ bool CSVRender::UnpagedWorldspaceWidget::handleDrop (const std::vector<CSMWorld:
|
|||
void CSVRender::UnpagedWorldspaceWidget::clearSelection (int elementMask)
|
||||
{
|
||||
mCell->setSelection (elementMask, Cell::Selection_Clear);
|
||||
flagAsModified();
|
||||
}
|
||||
|
||||
void CSVRender::UnpagedWorldspaceWidget::referenceableDataChanged (const QModelIndex& topLeft,
|
||||
|
|
Loading…
Reference in a new issue