TextEditor: Add missing colon to label text

Change-Id: Ie8b727d2405ff14f0ce7aa55dec4d56514405b37
Reviewed-by: David Schulz <david.schulz@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
Christian Kandeler
2023-10-16 10:59:31 +02:00
parent 358ecee5e8
commit b6d7990f25

View File

@@ -136,7 +136,7 @@ BehaviorSettingsWidget::BehaviorSettingsWidget(QWidget *parent)
.arg(afterWhitespaceCommentPosition);
d->commentPosition->setToolTip(commentPositionToolTip);
auto commentPositionLabel = new QLabel(Tr::tr("Preferred comment position"));
auto commentPositionLabel = new QLabel(Tr::tr("Preferred comment position:"));
commentPositionLabel->setToolTip(commentPositionToolTip);
d->skipTrailingWhitespace = new QCheckBox(Tr::tr("Skip clean whitespace for file types:"));