diff -r d1479a4f1426 -r 6ee2e475490c src/eric7/Project/ProjectBrowser.py --- a/src/eric7/Project/ProjectBrowser.py Mon Apr 08 17:02:11 2024 +0200 +++ b/src/eric7/Project/ProjectBrowser.py Tue Apr 09 14:27:03 2024 +0200 @@ -61,6 +61,8 @@ at a line giving an explicit file type (str, int, str) @signal sourceFile(filename, linenos) emitted to open a Python file giving a list of lines(str, list) + @signal sourceFile(filename, lineno, col_offset) emitted to open a Python file at a + line and column (str, int, int) @signal svgFile(filename) emitted to open a SVG file (str) @signal testFile(filename) emitted to open a Python file for a unit test (str) @@ -85,7 +87,9 @@ pixmapEditFile = pyqtSignal(str) pixmapFile = pyqtSignal(str) preferencesChanged = pyqtSignal() - sourceFile = pyqtSignal((str,), (str, int), (str, list), (str, int, str)) + sourceFile = pyqtSignal( + (str,), (str, int), (str, int, int), (str, list), (str, int, str) + ) svgFile = pyqtSignal(str) testFile = pyqtSignal(str) trpreview = pyqtSignal((list,), (list, bool))