diff --git a/ResultsPreferences.py b/ResultsPreferences.py index b1a97d0..5dffa8f 100644 --- a/ResultsPreferences.py +++ b/ResultsPreferences.py @@ -1,5 +1,6 @@ import os import FreeCAD as App +import FreeCADGui from PySide import QtGui import Serialize @@ -48,10 +49,12 @@ def getAllParams(): return [getParamGroups('UserParameter', 'User parameter')] def paramGroupAction(nfo): - print(repr(nfo)) + FreeCADGui.runCommand('Std_DlgParameter',0) + # TODO: find a way to select the desired group in the parameter dialog once it opens def paramAction(nfo): - print(repr(nfo)) + FreeCADGui.runCommand('Std_DlgParameter',0) + # TODO: find a way to select the desired parameter in the parameter dialog once it opens getters = { 'Boolean' : 'GetBool', diff --git a/ResultsToolbar.py b/ResultsToolbar.py index f2dd122..c992846 100644 --- a/ResultsToolbar.py +++ b/ResultsToolbar.py @@ -47,7 +47,7 @@ def subToolAction(nfo): print('Tool ' + toolPath + ' not found, was it offered by an extension that is no longer present?') def toolbarToolTip(nfo, setParent): - return '
Display toolbar ' + nfo['toolTip'] + '
This toolbar appears in the following workbenches:
Show the ' + nfo['text'] + ' toolbar
This toolbar appears in the following workbenches:
' + nfo['toolTip'] + '
' diff --git a/SearchBox.py b/SearchBox.py index 51f7c49..9ec3901 100644 --- a/SearchBox.py +++ b/SearchBox.py @@ -72,6 +72,7 @@ class SearchBox(QtGui.QLineEdit): self.extraInfo.layout().setContentsMargins(0,0,0,0) self.setExtraInfoIsActive = False self.pendingExtraInfo = None + self.currentExtraInfo = None # Connect signals and slots self.listView.clicked.connect(lambda x: self.selectResult('select', x)) self.listView.selectionModel().selectionChanged.connect(self.onSelectionChanged) @@ -241,6 +242,7 @@ class SearchBox(QtGui.QLineEdit): addGroups(group['subitems'], depth+1) addGroups(filterGroups(self.itemGroups)) self.proxyModel.setSourceModel(self.mdl) + self.currentExtraInfo = None # Unset this so that the ExtraInfo can be updated # TODO: try to find the already-highlighted item nbRows = self.listView.model().rowCount() if nbRows > 0: @@ -303,6 +305,11 @@ class SearchBox(QtGui.QLineEdit): @staticmethod def setExtraInfo(self, index): + if self.currentExtraInfo == (index.row(), index.column(), index.model()): + # avoid useless updates of the extra info window; this also prevents segfaults when the widget + # is replaced when selecting an option from the right-click context menu + return + self.currentExtraInfo = (index.row(), index.column(), index.model()) # TODO: use an atomic swap or mutex if possible if self.setExtraInfoIsActive: self.pendingExtraInfo = index