diff options
author | Bruce Smith <bruce@nanorex.com> | 2009-02-13 20:11:39 +0000 |
---|---|---|
committer | Bruce Smith <bruce@nanorex.com> | 2009-02-13 20:11:39 +0000 |
commit | 27b638558dbd452f817401e41dccb3cb9eeed108 (patch) | |
tree | 6c0e275a327e120609b170f2a2213344902ab3ca | |
parent | 2a65a853a0d446025d20d8839e32214d8d92b1ee (diff) | |
download | nanoengineer-theirix-27b638558dbd452f817401e41dccb3cb9eeed108.tar.gz nanoengineer-theirix-27b638558dbd452f817401e41dccb3cb9eeed108.zip |
fix predicted bug introduced by ChunkDrawer split
-rwxr-xr-x | cad/src/graphics/display_styles/displaymodes.py | 2 |
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 |