Fix the redundant spaces highlight option text in Preferences (#1046)

This commit is contained in:
Veronica Berglyd Olsen
2022-04-23 20:14:13 +02:00
committed by GitHub
+1 -1
View File
@@ -902,7 +902,7 @@ class GuiPreferencesSyntax(QWidget):
self.showMultiSpaces = QSwitch() self.showMultiSpaces = QSwitch()
self.showMultiSpaces.setChecked(self.mainConf.showMultiSpaces) self.showMultiSpaces.setChecked(self.mainConf.showMultiSpaces)
self.mainForm.addRow( self.mainForm.addRow(
self.tr("Highlight multiple spaces"), self.tr("Highlight multiple or trailing spaces"),
self.showMultiSpaces, self.showMultiSpaces,
self.tr("Applies to the document editor only.") self.tr("Applies to the document editor only.")
) )