aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmljstools
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2023-05-26 09:50:50 +0200
committerEike Ziller <eike.ziller@qt.io>2023-06-01 08:34:20 +0000
commit5365c5de80b78e8a73cc966193e4627a048f614e (patch)
treeea49ad966b657e1407e4e400f670d4b4cd725a3c /src/plugins/qmljstools
parent93759796984138e5fca5781e22381dcba6a51824 (diff)
Tr/QML Code Style: Just use "Other" for group box title
"Qml JS Code Style" is wrong (consistent would probably be "QML/JS Code Style"), and since this is already with "Qt Quick > Code Style" with another group box titled "Tabs and Indentation", it is also weird (the other group box is also about the QML/JS code style). Change-Id: I61d5f273b91aebf95f0e5f5913e160195dcd7a11 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io> Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'src/plugins/qmljstools')
-rw-r--r--src/plugins/qmljstools/qmljscodestylesettingswidget.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/qmljstools/qmljscodestylesettingswidget.cpp b/src/plugins/qmljstools/qmljscodestylesettingswidget.cpp
index 34919f6144f..9fee7205b3d 100644
--- a/src/plugins/qmljstools/qmljscodestylesettingswidget.cpp
+++ b/src/plugins/qmljstools/qmljscodestylesettingswidget.cpp
@@ -20,15 +20,17 @@ QmlJSCodeStyleSettingsWidget::QmlJSCodeStyleSettingsWidget(QWidget *parent)
m_lineLengthSpinBox->setMaximum(999);
using namespace Layouting;
+ // clang-format off
Column {
Group {
- title(Tr::tr("Qml JS Code Style")),
+ title(Tr::tr("Other")),
Form {
Tr::tr("&Line length:"), m_lineLengthSpinBox, br,
}
},
noMargin
}.attachTo(this);
+ // clang-format on
connect(m_lineLengthSpinBox, &QSpinBox::valueChanged,
this, &QmlJSCodeStyleSettingsWidget::slotSettingsChanged);