diff options
Diffstat (limited to 'transform.cc')
-rw-r--r-- | transform.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/transform.cc b/transform.cc index 6e65c3a..879a026 100644 --- a/transform.cc +++ b/transform.cc @@ -192,7 +192,7 @@ CSGTerm *TransformNode::render_csg_term(double c[16], QVector<CSGTerm*> *highlig 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) |