diff --git a/ResultsToolbar.py b/ResultsToolbar.py index c992846..d0ab287 100644 --- a/ResultsToolbar.py +++ b/ResultsToolbar.py @@ -47,7 +47,9 @@ def subToolAction(nfo): print('Tool ' + toolPath + ' not found, was it offered by an extension that is no longer present?') def toolbarToolTip(nfo, setParent): - return '

Show the ' + nfo['text'] + ' toolbar

This toolbar appears in the following workbenches:

' + workbenches = FreeCADGui.listWorkbenches() + in_workbenches = ['
  • ' + (Serialize.iconToHTML(QtGui.QIcon(workbenches[wb].Icon)) if wb in workbenches else '? ') + wb + '
  • ' for wb in nfo['action']['workbenches']] + return '

    Show the ' + nfo['text'] + ' toolbar

    This toolbar appears in the following workbenches:

    ' def subToolToolTip(nfo, setParent): return Serialize.iconToHTML(nfo['icon'], 32) + '

    ' + nfo['toolTip'] + '

    '