From bf8f6f0dd822244b874c7c790ff9b3ca9635f752 Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Thu, 6 Feb 2025 22:16:16 +0100 Subject: [PATCH] Fix cursor width text in preferences --- novelwriter/dialogs/preferences.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/novelwriter/dialogs/preferences.py b/novelwriter/dialogs/preferences.py index ace7d2cc..a1166c04 100644 --- a/novelwriter/dialogs/preferences.py +++ b/novelwriter/dialogs/preferences.py @@ -529,8 +529,8 @@ class GuiPreferences(NDialog): self.cursorWidth.setSingleStep(1) self.cursorWidth.setValue(CONFIG.cursorWidth) self.mainForm.addRow( - self.tr("Cursor Width"), self.cursorWidth, - self.tr("The width of the editor cursor."), + self.tr("Cursor width"), self.cursorWidth, + self.tr("The width of the text cursor of the editor."), unit=self.tr("px") )