Changeset 1645
- Timestamp:
- 07/16/07 23:51:30 (1 year ago)
- Files:
-
- gaphas/branches/hw/gaphas/item.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphas/branches/hw/gaphas/item.py
r1637 r1645 193 193 This method can be used to dispose constraints. 194 194 """ 195 super(Item, self).teardown_canvas()196 195 for h in self.handles(): 197 196 h.disconnect() 198 197 198 remove = self.canvas.solver.remove_constraint 199 199 for c in self._constraints: 200 self.canvas.solver.remove_constraint(c)200 remove(c) 201 201 202 202
