Commit bab942c1 authored by Lars Kruse's avatar Lars Kruse

fixed typo in comment

parent bcb32b11
...@@ -190,7 +190,7 @@ class OpenGLViewModelGeneric(pycam.Plugins.PluginBase): ...@@ -190,7 +190,7 @@ class OpenGLViewModelGeneric(pycam.Plugins.PluginBase):
for index in range(len(models)): for index in range(len(models)):
model = models[index] model = models[index]
for item in model.next(): for item in model.next():
# ignore invisble things like the normal of a ContourModel # ignore invisible things like the normal of a ContourModel
if hasattr(item, "to_OpenGL"): if hasattr(item, "to_OpenGL"):
item.to_OpenGL(show_directions=self.core.get("show_directions")) item.to_OpenGL(show_directions=self.core.get("show_directions"))
removal_list.append(index) removal_list.append(index)
......
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