Skip to content

Commit

Permalink
Merge pull request #7458 from pblottiere/fix_limit_atlas_32
Browse files Browse the repository at this point in the history
[atlas][backport 3.2] Increases number of pages
  • Loading branch information
pblottiere committed Jul 24, 2018
2 parents fd10515 + a2acbdb commit e919a3c
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 e919a3c

Please sign in to comment.