From 0dae12db60dd8571a2af03fc36017c219130db2c Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Wed, 6 Oct 2021 01:54:10 +0100 Subject: [PATCH] Added "what's this" to the search bar itself, but I think this uses the built-in FreeCAD help which does not work on my copy right now --- InitGui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/InitGui.py b/InitGui.py index 32ed7e7..723b969 100644 --- a/InitGui.py +++ b/InitGui.py @@ -20,6 +20,7 @@ def addToolSearchBox(): sea.resultSelected.connect(lambda index, groupId: __import__('GetItemGroups').onResultSelected(index, groupId)) wax = QtGui.QWidgetAction(None) wax.setWhatsThis('Use this search bar to find tools, document objects, preferences and more') + sea.setWhatsThis('Use this search bar to find tools, document objects, preferences and more') wax.setDefaultWidget(sea) #mbr.addWidget(sea) mbr.addAction(wax)