Skip to content

Commit a2acbdb

Browse files
committedJul 24, 2018
Increases number of pages
1 parent edb63e1 commit a2acbdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/layout/qgslayoutdesignerdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3918,7 +3918,7 @@ void QgsLayoutDesignerDialog::updateAtlasPageComboBox( int pageCount )
39183918
QgsLayoutAtlas *atlas = printLayout->atlas();
39193919
mAtlasPageComboBox->blockSignals( true );
39203920
mAtlasPageComboBox->clear();
3921-
for ( int i = 1; i <= pageCount && i < 500; ++i )
3921+
for ( int i = 1; i <= pageCount && i < 100000; ++i )
39223922
{
39233923
QString name = atlas->nameForPage( i - 1 );
39243924
QString fullName = ( !name.isEmpty() ? QStringLiteral( "%1: %2" ).arg( i ).arg( name ) : QString::number( i ) );

0 commit comments

Comments
 (0)
Please sign in to comment.