Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Increases number of pages
  • Loading branch information
pblottiere authored and nyalldawson committed Jul 20, 2018
1 parent 92f1fbe commit 2e9d17c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/composer/qgscomposer.cpp
Expand Up @@ -1053,7 +1053,7 @@ void QgsComposer::updateAtlasPageComboBox( int pageCount )

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 = mComposition->atlasComposition().nameForPage( i - 1 );
QString fullName = ( !name.isEmpty() ? QString( "%1: %2" ).arg( i ).arg( name ) : QString::number( i ) );
Expand Down

0 comments on commit 2e9d17c

Please sign in to comment.