7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:05:30 +00:00

Don't show hidden models in raytracing view

Fixes https://gitlab.com/kicad/code/kicad/-/issues/19836
This commit is contained in:
Ian McInerney 2025-02-04 15:53:20 +00:00
parent 55e5596cda
commit e4ea479cf0

View File

@ -1278,6 +1278,9 @@ void RENDER_3D_RAYTRACE_BASE::load3DModels( CONTAINER_3D& aDstContainer,
for( FP_3DMODEL& model : fp->Models() )
{
if( !model.m_Show || model.m_Filename.empty() )
continue;
// get it from cache
const S3DMODEL* modelPtr =
cacheMgr->GetModel( model.m_Filename, footprintBasePath, fp );