Commit e37feb5b authored by Lars Kruse's avatar Lars Kruse

fixed remainder of previous refactoring

parent 6c161057
...@@ -275,7 +275,7 @@ class Bounds(pycam.Plugins.ListPluginBase): ...@@ -275,7 +275,7 @@ class Bounds(pycam.Plugins.ListPluginBase):
func_low = lambda value, axis: low[axis] - value func_low = lambda value, axis: low[axis] - value
func_high = lambda value, axis: high[axis] + value func_high = lambda value, axis: high[axis] + value
# absolute mode -> no models may be selected # absolute mode -> no models may be selected
self._modelview.get_selection().unselect_all() self.select_models([])
for axis in "XYZ": for axis in "XYZ":
for func, name in ((func_low, "BoundaryLow"), for func, name in ((func_low, "BoundaryLow"),
(func_high, "BoundaryHigh")): (func_high, "BoundaryHigh")):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment