diff options
author | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-02-09 13:48:09 (GMT) |
---|---|---|
committer | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-02-09 13:48:09 (GMT) |
commit | c7b9a49c15f10ee76258f735ff66c1ed32e64c51 (patch) | |
tree | ebc9ef37dc44c0eed9c144441f5f763c381fdb08 /src/openscad.cc | |
parent | 66ac9239767dd2151e61a11bc3fb9605c2a4d917 (diff) |
Cleaned up progress handling, implemented cancel function. Needs more testing
git-svn-id: http://svn.clifford.at/openscad/trunk@420 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'src/openscad.cc')
-rw-r--r-- | src/openscad.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openscad.cc b/src/openscad.cc index 44c4e3c..f2e1afc 100644 --- a/src/openscad.cc +++ b/src/openscad.cc @@ -227,7 +227,7 @@ int main(int argc, char **argv) QString original_path = QDir::currentPath(); QDir::setCurrent(fileInfo.absolutePath()); - AbstractNode::idx_counter = 1; + AbstractNode::resetIndexCounter(); root_node = root_module->evaluate(&root_ctx, &root_inst); CGAL_Nef_polyhedron *root_N; |