--- a/src/eric7/IconEditor/IconEditorWindow.py Tue Dec 06 16:57:54 2022 +0100 +++ b/src/eric7/IconEditor/IconEditorWindow.py Tue Dec 06 17:35:41 2022 +0100 @@ -142,7 +142,7 @@ "ppm": self.tr("Portable Pixmap File (*.ppm)"), "sgi": self.tr("Silicon Graphics Image File (*.sgi)"), "svg": self.tr("Scalable Vector Graphics File (*.svg)"), - "svgz": self.tr("Compressed Scalable Vector Graphics File" " (*.svgz)"), + "svgz": self.tr("Compressed Scalable Vector Graphics File (*.svgz)"), "tga": self.tr("Targa Graphic File (*.tga)"), "tif": self.tr("TIFF File (*.tif)"), "tiff": self.tr("TIFF File (*.tiff)"), @@ -292,9 +292,7 @@ ) self.closeAct.setStatusTip(self.tr("Close the current icon editor window")) self.closeAct.setWhatsThis( - self.tr( - """<b>Close</b><p>Closes the current icon editor window.</p>""" - ) + self.tr("""<b>Close</b><p>Closes the current icon editor window.</p>""") ) self.closeAct.triggered.connect(self.close) self.__actions.append(self.closeAct) @@ -492,9 +490,7 @@ ) self.selectAllAct.setStatusTip(self.tr("Select the complete icon image")) self.selectAllAct.setWhatsThis( - self.tr( - """<b>Select All</b><p>Selects the complete icon image.</p>""" - ) + self.tr("""<b>Select All</b><p>Selects the complete icon image.</p>""") ) self.selectAllAct.triggered.connect(self.__editor.editSelectAll) self.__actions.append(self.selectAllAct) @@ -809,9 +805,7 @@ self.drawingActGrp, "iconEditor_tools_line", ) - self.drawLineAct.setWhatsThis( - self.tr("""<b>Line</b><p>Draw a line.</p>""") - ) + self.drawLineAct.setWhatsThis(self.tr("""<b>Line</b><p>Draw a line.</p>""")) self.drawLineAct.setCheckable(True) self.esm.setMapping(self.drawLineAct, IconEditorTool.LINE) self.drawLineAct.triggered.connect(self.esm.map)