Skip to content

Commit

Permalink
AutoTest: Fix capitalization on project settings page
Browse files Browse the repository at this point in the history
Group boxes are book style and don't have colon

Change-Id: I8e5f1dcc1ac451a3324dc37240cc589431c7057b
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
  • Loading branch information
e4z9 committed May 15, 2024
1 parent 06268fe commit ea9f7f2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/plugins/autotest/projectsettingswidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,15 @@ ProjectTestSettingsWidget::ProjectTestSettingsWidget(Project *project)
QPushButton *removeFilter = new QPushButton(Tr::tr("Remove"), this);
removeFilter->setEnabled(false);

// clang-format off
using namespace Layouting;
Column {
Widget {
bindTo(&generalWidget),
Column {
Row {
Group {
title(Tr::tr("Active frameworks:")),
title(Tr::tr("Active Test Frameworks")),
Column { m_activeFrameworks },
},
st,
Expand All @@ -96,7 +97,7 @@ ProjectTestSettingsWidget::ProjectTestSettingsWidget(Project *project)
},
Row { // explicitly outside of the global settings
Group {
title(Tr::tr("Limit files to path patterns")),
title(Tr::tr("Limit Files to Path Patterns")),
m_applyFilter.groupChecker(),
Column {
filterLabel,
Expand All @@ -109,6 +110,7 @@ ProjectTestSettingsWidget::ProjectTestSettingsWidget(Project *project)
},
noMargin(),
}.attachTo(this);
// clang-format on

generalWidget->setDisabled(m_projectSettings->useGlobalSettings());

Expand Down

0 comments on commit ea9f7f2

Please sign in to comment.