--- a/eric6/ViewManager/ViewManager.py Sat Sep 19 19:04:21 2020 +0200 +++ b/eric6/ViewManager/ViewManager.py Sun Sep 20 18:32:28 2020 +0200 @@ -127,6 +127,8 @@ editor's text @signal editorLineChanged(str,int) emitted to signal a change of an editor's current line (line is given one based) + @signal editorLineChangedEd(Editor,int) emitted to signal a change of an + editor's current line (line is given one based) @signal editorDoubleClickedEd(Editor, position, buttons) emitted to signal a mouse double click in an editor """ @@ -153,6 +155,7 @@ editorLanguageChanged = pyqtSignal(Editor) editorTextChanged = pyqtSignal(Editor) editorLineChanged = pyqtSignal(str, int) + editorLineChangedEd = pyqtSignal(Editor, int) editorDoubleClickedEd = pyqtSignal(Editor, QPoint, int) def __init__(self): @@ -3788,15 +3791,17 @@ self.viewActions.append(self.astViewerAct) self.disViewerAct = E5Action( - QCoreApplication.translate('ViewManager', 'Python DIS Viewer'), + QCoreApplication.translate( + 'ViewManager', 'Python Disassembly Viewer'), UI.PixmapCache.getIcon("disassembly"), - QCoreApplication.translate('ViewManager', 'Python DIS Viewer'), + QCoreApplication.translate( + 'ViewManager', 'Python Disassembly Viewer'), 0, 0, self, 'vm_python_dis_viewer', True) self.disViewerAct.setStatusTip(QCoreApplication.translate( 'ViewManager', 'Show the Disassembly for the current Python file')) self.disViewerAct.setWhatsThis(QCoreApplication.translate( 'ViewManager', - """<b>Python DIS Viewer</b>""" + """<b>Python Disassembly Viewer</b>""" """<p>This opens the a tree view of the Disassembly of the""" """ current Python source file.</p>""" ))