Skip to content

Commit

Permalink
Revert temporary change
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 21, 2019
1 parent 94921f4 commit 768376c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/layout/qgslayoutpdfexportoptionsdialog.cpp
Expand Up @@ -36,9 +36,9 @@ QgsLayoutPdfExportOptionsDialog::QgsLayoutPdfExportOptionsDialog( QWidget *paren
mTextRenderFormatComboBox->addItem( tr( "Always Export Text as Text Objects" ), QgsRenderContext::TextFormatAlwaysText );

mGeopdfAvailable = QgsAbstractGeoPdfExporter::geoPDFCreationAvailable();
mGeoPDFGroupBox->setEnabled( true || mGeopdfAvailable );
mGeoPDFGroupBox->setEnabled( mGeopdfAvailable );
mGeoPDFGroupBox->setChecked( false );
if ( false && !mGeopdfAvailable )
if ( !mGeopdfAvailable )
{
mGeoPDFOptionsStackedWidget->setCurrentIndex( 0 );
mGeoPdfUnavailableReason->setText( QgsAbstractGeoPdfExporter::geoPDFAvailabilityExplanation() );
Expand Down

0 comments on commit 768376c

Please sign in to comment.