We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ff5820 commit b0ad13fCopy full SHA for b0ad13f
python/plugins/processing/gui/BatchPanel.py
@@ -120,10 +120,6 @@ def initWidgets(self):
120
break
121
122
# Determine column count
123
- nOutputs = len(self.alg.destinationParameterDefinitions()) + 1
124
- if nOutputs == 1:
125
- nOutputs = 0
126
-
127
self.tblParameters.setColumnCount(
128
self.alg.countVisibleParameters())
129
@@ -144,10 +140,6 @@ def initWidgets(self):
144
140
column, QTableWidgetItem(out.description()))
145
141
column += 1
146
142
147
- # Last column for indicating if output will be added to canvas
148
- if len(self.alg.destinationParameterDefinitions()) > 0:
149
- self.tblParameters.setHorizontalHeaderItem(
150
- column, QTableWidgetItem(self.tr('Load in QGIS')))
151
143
152
# Add an empty row to begin
153
self.addRow()
0 commit comments