Skip to content

Commit

Permalink
Properly initialize filter configuration table
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Apr 9, 2018
1 parent 4462dba commit 8d9a978
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/gui/processing/qgsprocessingconfigurationwidgets.cpp
Expand Up @@ -143,6 +143,7 @@ void QgsFilterAlgorithmConfigurationWidget::addOutput()
int rowIndex = mOutputExpressionWidget->rowCount();
mOutputExpressionWidget->setRowCount( rowIndex + 1 );
QgsExpressionLineEdit *expressionBuilder = new QgsExpressionLineEdit();
mOutputExpressionWidget->setItem( rowIndex, 0, new QTableWidgetItem( QString() ) );
mOutputExpressionWidget->setCellWidget( rowIndex, 1, expressionBuilder );
mOutputExpressionWidget->setCellWidget( rowIndex, 2, new QCheckBox() );
}
Expand Down

0 comments on commit 8d9a978

Please sign in to comment.