Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make astyle happy
  • Loading branch information
rduivenvoorde committed Sep 4, 2020
1 parent 7d4738a commit 6e3754b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/qgstemporalcontrollerwidget.cpp
Expand Up @@ -577,9 +577,9 @@ void QgsTemporalControllerWidget::setDates( const QgsDateTimeRange &range )
whileBlocking( mFixedRangeEndDateTime )->setDateTime( range.end() );
// only if range is different from mNavigationObject->temporalExtents update
// else recursion as updateTemporalExtent itself calls mNavigationObject->setTemporalExtents
if ( !(range == mNavigationObject->temporalExtents()) )
if ( !( range == mNavigationObject->temporalExtents() ) )
{
updateTemporalExtent();
updateTemporalExtent();
}
}
}
Expand Down

0 comments on commit 6e3754b

Please sign in to comment.