Merge pull request #12387 from Atlante45/new-master

Merge stable back into master
This commit is contained in:
Clément Brisset 2018-02-13 12:59:59 -08:00 committed by GitHub
commit 593113c102
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -342,6 +342,13 @@ void Scene::updateItems(const Transaction::Updates& transactions) {
// Access the true item
auto& item = _items[updateID];
// If item doesn't exist it cannot be updated
if (!item.exist()) {
continue;
}
// Good to go, deal with the update
auto oldCell = item.getCell();
auto oldKey = item.getKey();