diff options
author | Marius Kintel <marius@kintel.net> | 2011-08-05 23:08:11 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-08-05 23:08:11 (GMT) |
commit | cfea2f8934353bfc5635d05d81ecaac57b97e3b7 (patch) | |
tree | 5d7d52fee1d2d6da56760b2bd5df05c1cadd5ad6 /src/mainwin.cc | |
parent | b9608dd2f8cae5f7e9c22e5feacfe8b58715ffae (diff) |
bugfix: background and highlight was broken after refactoring
Diffstat (limited to 'src/mainwin.cc')
-rw-r--r-- | src/mainwin.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwin.cc b/src/mainwin.cc index badb01f..2cd16be 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -779,7 +779,7 @@ void MainWindow::compileCSG(bool procevents) CGALEvaluator cgalevaluator(cache, this->tree); PolySetCGALEvaluator psevaluator(cgalevaluator); CSGTermEvaluator csgrenderer(this->tree, &psevaluator); - root_raw_term = csgrenderer.evaluateCSGTerm(*root_node, &highlight_terms, &background_terms); + root_raw_term = csgrenderer.evaluateCSGTerm(*root_node, highlight_terms, background_terms); if (!root_raw_term) { PRINT("ERROR: CSG generation failed! (no top level object found)"); if (procevents) |