ENABLE_THUMBNAIL_GENERATOR -> Do not render wipe tower into thumbnail
This commit is contained in:
parent
982ed95a35
commit
843251c91f
1 changed files with 1 additions and 1 deletions
|
@ -1664,7 +1664,7 @@ void GLCanvas3D::render_thumbnail(ThumbnailData& thumbnail_data, unsigned int w,
|
|||
|
||||
for (GLVolume* vol : m_volumes.volumes)
|
||||
{
|
||||
if (!vol->is_modifier && (!parts_only || (vol->composite_id.volume_id >= 0)))
|
||||
if (!vol->is_modifier && !vol->is_wipe_tower && (!parts_only || (vol->composite_id.volume_id >= 0)))
|
||||
{
|
||||
if (!printable_only || is_visible(*vol))
|
||||
visible_volumes.push_back(vol);
|
||||
|
|
Loading…
Reference in a new issue