Skip to content

Commit

Permalink
[processing] Fix incorrect tooltips show for output parameters
Browse files Browse the repository at this point in the history
(cherry picked from commit d4f378a)
(cherry picked from commit fdfb7e6)
  • Loading branch information
nyalldawson committed Mar 24, 2020
1 parent 488dcf1 commit 846d350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/ParametersPanel.py
Expand Up @@ -252,7 +252,7 @@ def skipOutputChanged(widget, checkbox, skipped):
self.layoutMain.insertWidget(self.layoutMain.count() - 1, check)
self.checkBoxes[output.name()] = check

widget.setToolTip(param.toolTip())
widget.setToolTip(output.toolTip())
self.outputWidgets[output.name()] = widget

for wrapper in list(self.wrappers.values()):
Expand Down

0 comments on commit 846d350

Please sign in to comment.