Skip to content

Commit

Permalink
fixup! feat(3d/renderview): extract forward render view
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitdm-oslandia committed Jan 16, 2025
1 parent c665d88 commit c34e3f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/3d/framegraph/qgsframegraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ void QgsFrameGraph::setupDepthMapDebugging( bool enabled, Qt::Corner corner, dou
void QgsFrameGraph::setSize( QSize s )
{
mSize = s;
for ( QgsAbstractRenderView *rv : mRenderViewMap.values() )
for ( QgsAbstractRenderView *rv : qAsConst( mRenderViewMap.values() ) )
{
rv->updateWindowResize( mSize.width(), mSize.height() );
}
Expand Down

0 comments on commit c34e3f0

Please sign in to comment.