mirror of
https://github.com/aimrebirth/tools.git
synced 2026-04-15 01:43:25 +00:00
Do not print any SHAPE blocks.
This commit is contained in:
parent
0336abf712
commit
1bf7903a62
1 changed files with 1 additions and 1 deletions
|
|
@ -617,7 +617,7 @@ bool block::canPrint() const
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// collision object
|
// collision object
|
||||||
if (h.name == "SHAPE")
|
if (h.name.find("SHAPE") != h.name.npos)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// default
|
// default
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue