Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] corrected fix introduced in 7fc592989f26c346e72465e43a5e…
…d790d67968ac
  • Loading branch information
volaya committed Sep 15, 2013
1 parent fe02237 commit df257ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/BatchProcessingDialog.py
Expand Up @@ -128,7 +128,7 @@ def setTableContent(self):
self.table.setColumnHidden(i, not self.showAdvanced)
i+=1
for out in self.alg.outputs:
if not out.visible:
if not out.hidden:
self.table.setColumnWidth(i,250)
self.table.setHorizontalHeaderItem(i, QtGui.QTableWidgetItem(out.description))
i+=1
Expand Down

0 comments on commit df257ea

Please sign in to comment.