Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[temporal] Tiny fix to insure vector features are shown on non-tempor…
…al layout map items
  • Loading branch information
nirvn committed May 8, 2020
1 parent f1e9c8d commit 0eb3239
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/qgsrendercontext.cpp
Expand Up @@ -98,7 +98,8 @@ QgsRenderContext &QgsRenderContext::operator=( const QgsRenderContext &rh )
mHasRenderedFeatureHandlers = rh.mHasRenderedFeatureHandlers;
mCustomRenderingFlags = rh.mCustomRenderingFlags;
setIsTemporal( rh.isTemporal() );
setTemporalRange( rh.temporalRange() );
if ( isTemporal() )
setTemporalRange( rh.temporalRange() );
#ifdef QGISDEBUG
mHasTransformContext = rh.mHasTransformContext;
#endif
Expand Down

0 comments on commit 0eb3239

Please sign in to comment.