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