diff -r 3b46c662a004 -r 9960d19d66b5 src/eric7/ViewManager/ViewManager.py --- a/src/eric7/ViewManager/ViewManager.py Tue Dec 06 16:00:06 2022 +0100 +++ b/src/eric7/ViewManager/ViewManager.py Tue Dec 06 16:04:58 2022 +0100 @@ -602,7 +602,7 @@ self.newAct.setWhatsThis( QCoreApplication.translate( "ViewManager", - """<b>New</b>""" """<p>An empty editor window will be created.</p>""", + """<b>New</b><p>An empty editor window will be created.</p>""", ) ) self.newAct.triggered.connect(self.newEditor) @@ -652,7 +652,7 @@ self.closeAct.setWhatsThis( QCoreApplication.translate( "ViewManager", - """<b>Close Window</b>""" """<p>Close the current window.</p>""", + """<b>Close Window</b><p>Close the current window.</p>""", ) ) self.closeAct.triggered.connect(self.closeCurrentWindow) @@ -672,7 +672,7 @@ self.closeAllAct.setWhatsThis( QCoreApplication.translate( "ViewManager", - """<b>Close All Windows</b>""" """<p>Close all editor windows.</p>""", + """<b>Close All Windows</b><p>Close all editor windows.</p>""", ) ) self.closeAllAct.triggered.connect(self.closeAllWindows) @@ -1136,7 +1136,7 @@ self.deleteAct.setWhatsThis( QCoreApplication.translate( "ViewManager", - """<b>Clear</b>""" """<p>Delete all text of the current editor.</p>""", + """<b>Clear</b><p>Delete all text of the current editor.</p>""", ) ) self.deleteAct.triggered.connect(self.__editDelete) @@ -4357,7 +4357,7 @@ self.splitViewAct.setWhatsThis( QCoreApplication.translate( "ViewManager", - """<b>Split view</b>""" """<p>Add a split to the view.</p>""", + """<b>Split view</b><p>Add a split to the view.</p>""", ) ) self.splitViewAct.triggered.connect(self.__splitView) @@ -4403,7 +4403,7 @@ self.splitRemoveAct.setWhatsThis( QCoreApplication.translate( "ViewManager", - """<b>Remove split</b>""" """<p>Remove the current split.</p>""", + """<b>Remove split</b><p>Remove the current split.</p>""", ) ) self.splitRemoveAct.triggered.connect(self.removeSplit) @@ -4427,7 +4427,7 @@ self.nextSplitAct.setWhatsThis( QCoreApplication.translate( "ViewManager", - """<b>Next split</b>""" """<p>Move to the next split.</p>""", + """<b>Next split</b><p>Move to the next split.</p>""", ) ) self.nextSplitAct.triggered.connect(self.nextSplit) @@ -4451,7 +4451,7 @@ self.prevSplitAct.setWhatsThis( QCoreApplication.translate( "ViewManager", - """<b>Previous split</b>""" """<p>Move to the previous split.</p>""", + """<b>Previous split</b><p>Move to the previous split.</p>""", ) ) self.prevSplitAct.triggered.connect(self.prevSplit) @@ -4725,7 +4725,7 @@ self.macroLoadAct.setWhatsThis( QCoreApplication.translate( "ViewManager", - """<b>Load Macro</b>""" """<p>Load an editor macro from a file.</p>""", + """<b>Load Macro</b><p>Load an editor macro from a file.</p>""", ) ) self.macroLoadAct.triggered.connect(self.__macroLoad)