summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Smith <bruce@nanorex.com>2009-02-13 20:11:39 +0000
committerBruce Smith <bruce@nanorex.com>2009-02-13 20:11:39 +0000
commit27b638558dbd452f817401e41dccb3cb9eeed108 (patch)
tree6c0e275a327e120609b170f2a2213344902ab3ca
parent2a65a853a0d446025d20d8839e32214d8d92b1ee (diff)
downloadnanoengineer-theirix-27b638558dbd452f817401e41dccb3cb9eeed108.tar.gz
nanoengineer-theirix-27b638558dbd452f817401e41dccb3cb9eeed108.zip
fix predicted bug introduced by ChunkDrawer split
-rwxr-xr-xcad/src/graphics/display_styles/displaymodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cad/src/graphics/display_styles/displaymodes.py b/cad/src/graphics/display_styles/displaymodes.py
index 662868d35..aea24f63c 100755
--- a/cad/src/graphics/display_styles/displaymodes.py
+++ b/cad/src/graphics/display_styles/displaymodes.py
@@ -223,7 +223,7 @@ class ChunkDisplayMode(DisplayMode):
memoplace = memo_dict.setdefault(our_key_there, {})
# memoplace is our own persistent mutable dict on this chunk, which
# lasts as long as the chunk does
- counter = chunk._havelist_inval_counter
+ counter = chunk._drawer._havelist_inval_counter #### TODO: refactor -- move this method partly into class Chunk
memo_validity_data = (counter,)
# a tuple of everything which has to remain the same, for the memo
# data to remain valid