Skip to content

Commit

Permalink
[temporal] Fix setting restoration regression (fixes #41225)
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Jan 28, 2021
1 parent 0c238df commit 0f76655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgstemporalnavigationobject.cpp
Expand Up @@ -203,7 +203,7 @@ void QgsTemporalNavigationObject::setFrameDuration( QgsInterval frameDuration )
// forcing an update of our views
QgsDateTimeRange range = dateTimeRangeForFrameNumber( mCurrentFrameNumber );

if ( !mBlockUpdateTemporalRangeSignal && mNavigationMode != NavigationOff )
if ( !mBlockUpdateTemporalRangeSignal && mNavigationMode == Animated )
emit updateTemporalRange( range );
}

Expand Down

0 comments on commit 0f76655

Please sign in to comment.