Skip to content

Commit

Permalink
[Browser] Goodbye OWS. Fixes qgis#24841
Browse files Browse the repository at this point in the history
  • Loading branch information
lbartoletti committed Jun 4, 2021
1 parent 7f69678 commit 2556e06
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/core/browser/qgsdataitemproviderregistry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ QgsDataItemProviderRegistry::QgsDataItemProviderRegistry()
{
QStringList providersList = QgsProviderRegistry::instance()->providerList();

// OWS is not useful in the browser.
// The OWS type connections (WFS/WMS) are available in their respective menus.
// Having an OWS menu in the browser only brings disadvantages.
// See https://github.com/qgis/QGIS/issues/24841
providersList.removeOne( QStringLiteral( "ows" ) );

const auto constProvidersList = providersList;
for ( const QString &key : constProvidersList )
{
Expand Down

0 comments on commit 2556e06

Please sign in to comment.