--- a/src/eric7/QScintilla/MiniEditor.py Tue Dec 06 16:00:06 2022 +0100 +++ b/src/eric7/QScintilla/MiniEditor.py Tue Dec 06 16:04:58 2022 +0100 @@ -622,7 +622,7 @@ self.newAct.setStatusTip(self.tr("Open an empty editor window")) self.newAct.setWhatsThis( self.tr( - """<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.__newFile) @@ -717,7 +717,7 @@ ) self.closeAct.setStatusTip(self.tr("Close the editor window")) self.closeAct.setWhatsThis( - self.tr("""<b>Close Window</b>""" """<p>Close the current window.</p>""") + self.tr("""<b>Close Window</b><p>Close the current window.</p>""") ) self.closeAct.triggered.connect(self.close) self.fileActions.append(self.closeAct) @@ -874,7 +874,7 @@ self.deleteAct.setStatusTip(self.tr("Clear all text")) self.deleteAct.setWhatsThis( self.tr( - """<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.__textEdit.clear)