diff options
Diffstat (limited to 'module.cc')
-rw-r--r-- | module.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -261,7 +261,7 @@ CSGTerm *AbstractNode::render_csg_term(double m[16], QVector<CSGTerm*> *highligh if (t2 && !t1) { t1 = t2; } else if (t2 && t1) { - t1 = new CSGTerm(CSGTerm::UNION, t1, t2); + t1 = new CSGTerm(CSGTerm::TYPE_UNION, t1, t2); } } if (t1 && modinst->tag_highlight && highlights) |