diff -r b9d2063e610e -r d52e90757805 UI/UserInterface.py --- a/UI/UserInterface.py Sat Dec 23 16:30:40 2017 +0100 +++ b/UI/UserInterface.py Sat Dec 23 16:42:21 2017 +0100 @@ -1466,7 +1466,7 @@ """ window.</p>""" )) self.debugViewerActivateAct.triggered.connect( - self.__activateDebugViewer) + self.activateDebugViewer) self.actions.append(self.debugViewerActivateAct) self.addAction(self.debugViewerActivateAct) @@ -3960,9 +3960,9 @@ self.multiProjectBrowser.show() self.multiProjectBrowser.setFocus(Qt.ActiveWindowFocusReason) - def __activateDebugViewer(self): - """ - Private slot to handle the activation of the debug viewer. + def activateDebugViewer(self): + """ + Public slot to handle the activation of the debug viewer. """ if self.layoutType == "Toolboxes": self.rToolboxDock.show()