Skip to content

Commit

Permalink
[processing] Fix add (single) row tool button broken
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Oct 31, 2020
1 parent 7ab1f19 commit 46c4b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/BatchPanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ def __init__(self, parent, alg):
self.alg = alg
self.parent = parent

self.btnAdd.clicked.connect(self.addRow)
self.btnAdd.clicked.connect(lambda: self.addRow(1))
self.btnRemove.clicked.connect(self.removeRows)
self.btnOpen.clicked.connect(self.load)
self.btnSave.clicked.connect(self.save)
Expand Down

0 comments on commit 46c4b74

Please sign in to comment.