Changeset 1169

Show
Ignore:
Timestamp:
03/16/07 00:50:08 (2 years ago)
Author:
arjanmol
Message:

fixed post-load bug

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gaphor/trunk/gaphor/storage.py

    r1121 r1169  
    275275    # Unlock canvas's for updates 
    276276    for id, elem in elements.items(): 
    277         if elem.canvas: 
     277        if isinstance(elem, parser.element) and elem.canvas: 
    278278            elem.element.canvas.block_updates = False 
    279279