Skip to content

Commit dbd5a86

Browse files
authoredJul 20, 2018
Merge pull request #7399 from pblottiere/fix_limit_altas
Remove hardcoded limit (fixes #17689)
2 parents 9887508 + cff4d70 commit dbd5a86

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
@@ -3911,7 +3911,7 @@ void QgsLayoutDesignerDialog::updateAtlasPageComboBox( int pageCount )
39113911
QgsLayoutAtlas *atlas = printLayout->atlas();
39123912
mAtlasPageComboBox->blockSignals( true );
39133913
mAtlasPageComboBox->clear();
3914-
for ( int i = 1; i <= pageCount && i < 500; ++i )
3914+
for ( int i = 1; i <= pageCount && i < 100000; ++i )
39153915
{
39163916
QString name = atlas->nameForPage( i - 1 );
39173917
QString fullName = ( !name.isEmpty() ? QStringLiteral( "%1: %2" ).arg( i ).arg( name ) : QString::number( i ) );

0 commit comments

Comments
 (0)
Please sign in to comment.