Skip to content

Commit

Permalink
Don't show non-functional nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Mar 26, 2020
1 parent c216163 commit 51a4a7d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/gui/processing/qgsprocessingoutputdestinationwidget.cpp
Expand Up @@ -403,7 +403,10 @@ void QgsProcessingLayerOutputDestinationWidget::saveToDatabase()
if ( QgsPanelWidget *panel = QgsPanelWidget::findParentPanel( this ) )
{

QgsNewDatabaseTableNameWidget *widget = new QgsNewDatabaseTableNameWidget( mBrowserModel, QStringList(), this );
QgsNewDatabaseTableNameWidget *widget = new QgsNewDatabaseTableNameWidget( mBrowserModel, QStringList() << QStringLiteral( "postgres" )
<< QStringLiteral( "mssql" )
<< QStringLiteral( "ogr" )
<< QStringLiteral( "spatialite" ), this );
widget->setPanelTitle( tr( "Save “%1” to Database Table" ).arg( mParameter->description() ) );

panel->openPanel( widget );
Expand Down

0 comments on commit 51a4a7d

Please sign in to comment.