Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Increases number of pages
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/app/layout/qgslayoutdesignerdialog.cpp
|
@@ -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 ) ); |
|
|