Reset layer state when cycle is done

This commit is contained in:
Simon Fels 2016-11-08 08:36:03 +01:00
commit c4a09f75af

View file

@ -89,4 +89,7 @@ void LayerManager::finish_cycle() {
layers_.erase(iter);
}
}
for (auto &layer : layers_)
layer.second.updated = false;
}