Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Increases number of pages
  • Loading branch information
pblottiere committed Jul 24, 2018
1 parent edb63e1 commit a2acbdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/layout/qgslayoutdesignerdialog.cpp
Expand Up @@ -3918,7 +3918,7 @@ void QgsLayoutDesignerDialog::updateAtlasPageComboBox( int pageCount )
QgsLayoutAtlas *atlas = printLayout->atlas();
mAtlasPageComboBox->blockSignals( true );
mAtlasPageComboBox->clear();
for ( int i = 1; i <= pageCount && i < 500; ++i )
for ( int i = 1; i <= pageCount && i < 100000; ++i )
{
QString name = atlas->nameForPage( i - 1 );
QString fullName = ( !name.isEmpty() ? QStringLiteral( "%1: %2" ).arg( i ).arg( name ) : QString::number( i ) );
Expand Down

0 comments on commit a2acbdb

Please sign in to comment.