diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-02 08:45:24 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-02 08:45:24 (GMT) |
commit | ffb68adb62090d1f2fadceaabb188fa3fdce8c17 (patch) | |
tree | bf7841b0515e56a4688d9c32d3ac23ecac106085 | |
parent | 8263170757ef989ff98fcb82616c6be4d5f08127 (diff) |
Clifford Wolf:
Fixed STL export
git-svn-id: http://svn.clifford.at/openscad/trunk@192 b57f626f-c46c-0410-a088-ec61d464b74c
-rw-r--r-- | mainwin.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1018,7 +1018,7 @@ void MainWindow::actionExportSTLorOFF(bool) return; } - if (root_N->p3.is_simple()) { + if (!root_N->p3.is_simple()) { PRINT("Object isn't a valid 2-manifold! Modify your design.."); current_win = NULL; return; |