We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 520b94e commit 05e70b2Copy full SHA for 05e70b2
python/plugins/processing/gui/BatchPanel.py
@@ -347,13 +347,7 @@ def addRow(self):
347
self.tblParameters.setCellWidget(row, column, item)
348
349
def removeRows(self):
350
- # ~ self.tblParameters.setUpdatesEnabled(False)
351
- # ~ indexes = self.tblParameters.selectionModel().selectedIndexes()
352
- # ~ indexes.sort()
353
- # ~ for i in reversed(indexes):
354
- # ~ self.tblParameters.model().removeRow(i.row())
355
- # ~ self.tblParameters.setUpdatesEnabled(True)
356
- if self.tblParameters.rowCount() > 2:
+ if self.tblParameters.rowCount() > 1:
357
self.tblParameters.setRowCount(self.tblParameters.rowCount() - 1)
358
359
def fillParameterValues(self, column):
0 commit comments