We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 3e5052b commit 6350a8bCopy full SHA for 6350a8b
src/core/mesh/qgsmeshtracerenderer.cpp
@@ -398,7 +398,9 @@ void QgsMeshStreamField::addRandomTraces()
398
{
399
if ( mMaximumMagnitude > 0 )
400
while ( ( mPixelFillingCount < mMaxPixelFillingCount ) &&
401
- mRenderContext.feedback() && !mRenderContext.feedback()->isCanceled() )
+ ( !mRenderContext.feedback() ||
402
+ !mRenderContext.feedback()->isCanceled() ||
403
+ !mRenderContext.renderingStopped() ) )
404
addRandomTrace();
405
}
406
0 commit comments