diff options
| author | Liam P. White <inkscapebrony@gmail.com> | 2015-03-05 12:41:18 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebrony@gmail.com> | 2015-03-05 12:41:18 +0000 |
| commit | 24f4d9249267f8b93fd2b9075ffe7aead079afd9 (patch) | |
| tree | 84877ae217147220df140c095c3198fcaa33d2e4 /src/display/drawing.cpp | |
| parent | Fix for Bug #918319 (Printing offsets page). (diff) | |
| download | inkscape-24f4d9249267f8b93fd2b9075ffe7aead079afd9.tar.gz inkscape-24f4d9249267f8b93fd2b9075ffe7aead079afd9.zip | |
Fix out-of-control render cache from dominating all available memory
(bzr r13966)
Diffstat (limited to 'src/display/drawing.cpp')
| -rw-r--r-- | src/display/drawing.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/display/drawing.cpp b/src/display/drawing.cpp index 6e728b03d..eadd7e528 100644 --- a/src/display/drawing.cpp +++ b/src/display/drawing.cpp @@ -210,9 +210,9 @@ Drawing::_pickItemsForCaching() } std::set<DrawingItem*> to_cache; - for (i = _candidate_items.begin(); i != _candidate_items.end(); ++i) { - i->item->setCached(true); - to_cache.insert(i->item); + for (CandidateList::iterator j = _candidate_items.begin(); j != i; ++j) { + j->item->setCached(true); + to_cache.insert(j->item); } // Everything which is now in _cached_items but not in to_cache must be uncached // Note that calling setCached on an item modifies _cached_items |
