Skip to content

Commit

Permalink
[Browser] Goodbye OWS. Fixes #24841
Browse files Browse the repository at this point in the history
  • Loading branch information
lbartoletti authored and nyalldawson committed Jun 6, 2021
1 parent 25ca993 commit 1ad3e9a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/core/browser/qgsdataitemproviderregistry.cpp
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 1ad3e9a

Please sign in to comment.