Skip to content

Commit

Permalink
Merge pull request #24 from enthought/enh/chaco-use-draw-order
Browse files Browse the repository at this point in the history
BUG: remove `use_draw_order`
  • Loading branch information
rkern authored Jul 18, 2022
2 parents 7b77b20 + 6fa954a commit ea2593c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapping/chaco/map.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def invalidate(self):
return

def do_layout(self, *args, **kw):
if self.use_draw_order and self.component is not None:
if self.component is not None:
self._layout_as_overlay(*args, **kw)
else:
super(Map, self).do_layout(*args, **kw)
Expand Down

0 comments on commit ea2593c

Please sign in to comment.