From f18dcf2202acbdb1573608e2f210d25407625c2c Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Thu, 8 Feb 2024 14:41:02 +0100 Subject: [PATCH] TextEditor: Fix capitalization Change-Id: I220426e01c97eceab607e3b5c31bd8e294f48273 Reviewed-by: David Schulz --- src/plugins/texteditor/displaysettingspage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/texteditor/displaysettingspage.cpp b/src/plugins/texteditor/displaysettingspage.cpp index e46c5b7c5b4..b5435ed5e91 100644 --- a/src/plugins/texteditor/displaysettingspage.cpp +++ b/src/plugins/texteditor/displaysettingspage.cpp @@ -98,7 +98,7 @@ public: visualizeWhitespace = new QCheckBox(Tr::tr("&Visualize whitespace")); visualizeWhitespace->setToolTip(Tr::tr("Shows tabs and spaces.")); - highlightSelection = new QCheckBox(Tr::tr("&Highlight Selection")); + highlightSelection = new QCheckBox(Tr::tr("&Highlight selection")); highlightSelection->setToolTip(Tr::tr("Adds a colored background and a marker to the " "scrollbar to occurrences of the selected text."));