Skip to content

Commit

Permalink
Merge pull request #32673 from rouault/oapif_provider_query_button
Browse files Browse the repository at this point in the history
[OAPIF provider] Do not grey out 'Build query' button for OAPIF connections
  • Loading branch information
rouault committed Nov 6, 2019
2 parents 6adfdc4 + f660334 commit cbcc9c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/wfs/qgswfssourceselect.cpp
Expand Up @@ -900,7 +900,7 @@ void QgsWFSSourceSelect::treeWidgetCurrentRowChanged( const QModelIndex &current
Q_UNUSED( previous )
QgsDebugMsg( QStringLiteral( "treeWidget_currentRowChanged called" ) );
changeCRSFilter();
mBuildQueryButton->setEnabled( !isOapif() && current.isValid() );
mBuildQueryButton->setEnabled( current.isValid() );
emit enableButtons( current.isValid() );
}

Expand Down

0 comments on commit cbcc9c5

Please sign in to comment.