Skip to content

Commit

Permalink
Merge pull request #7399 from pblottiere/fix_limit_altas
Browse files Browse the repository at this point in the history
Remove hardcoded limit (fixes #17689)
  • Loading branch information
pblottiere authored Jul 20, 2018
2 parents 9887508 + cff4d70 commit dbd5a86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/layout/qgslayoutdesignerdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3911,7 +3911,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 dbd5a86

Please sign in to comment.