Skip to content

Commit

Permalink
[OAPIF provider] Do not grey out 'Build query' button for OAPIF conne…
Browse files Browse the repository at this point in the history
…ctions
  • Loading branch information
rouault committed Nov 5, 2019
1 parent 375b390 commit f660334
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 f660334

Please sign in to comment.