Skip to content

Commit f7b001f

Browse files
ismailsunninyalldawson
authored andcommittedApr 28, 2020
Set maximum time step to max int. Fix #35887.
1 parent 7cc0d92 commit f7b001f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/gui/qgstemporalcontrollerwidget.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ QgsTemporalControllerWidget::QgsTemporalControllerWidget( QWidget *parent )
100100
mTimeStepsComboBox->setCurrentIndex( mTimeStepsComboBox->findData( QgsUnitTypes::TemporalHours ) );
101101

102102
mSpinBox->setMinimum( 0.0000001 );
103+
mSpinBox->setMaximum( std::numeric_limits<int>::max() );
103104
mSpinBox->setSingleStep( 1 );
104105
mSpinBox->setValue( 1 );
105106

0 commit comments

Comments
 (0)
Please sign in to comment.