Skip to content

Commit bfb5aaf

Browse files
committedJun 11, 2014
[composer] Correctly set initial state of atlas filename expression button (fix #10499)
1 parent 1b18c58 commit bfb5aaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/composer/qgsatlascompositionwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ void QgsAtlasCompositionWidget::updateGuiElements()
312312

313313
mAtlasSingleFileCheckBox->setCheckState( atlasMap->singleFile() ? Qt::Checked : Qt::Unchecked );
314314
mAtlasFilenamePatternEdit->setEnabled( !atlasMap->singleFile() );
315-
mAtlasFilenameExpressionButton->setEnabled( atlasMap->singleFile() );
315+
mAtlasFilenameExpressionButton->setEnabled( !atlasMap->singleFile() );
316316

317317
mAtlasSortFeatureCheckBox->setCheckState( atlasMap->sortFeatures() ? Qt::Checked : Qt::Unchecked );
318318
mAtlasSortFeatureDirectionButton->setEnabled( atlasMap->sortFeatures() );

0 commit comments

Comments
 (0)
Please sign in to comment.