Layouts: Add missing "br"s to terminate Form lines

This restores the layout of various forms to the state prior to the
LayoutHelper changes.

Change-Id: I9b88229485b257ca7454d688aa0a9b1984206496
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Alessandro Portale
2023-05-03 20:50:32 +02:00
parent b3a595fcfe
commit 6531dc4569
8 changed files with 15 additions and 15 deletions

View File

@@ -90,7 +90,7 @@ BazaarSettingsPage::BazaarSettingsPage(BazaarSettings *settings)
Group { Group {
title(Tr::tr("User")), title(Tr::tr("User")),
Form { Form {
s.userName, s.userName, br,
s.userEmail s.userEmail
} }
}, },

View File

@@ -52,7 +52,7 @@ FileShareProtocolSettingsPage::FileShareProtocolSettingsPage(FileShareProtocolSe
Column { Column {
Form { Form {
label, br, label, br,
s.path, s.path, br,
s.displayCount s.displayCount
}, },
st st

View File

@@ -67,8 +67,8 @@ SettingsPage::SettingsPage(Settings *settings)
Column { Column {
Form { Form {
s.protocols, s.protocols, br,
s.username, s.username, br,
s.expiryDays s.expiryDays
}, },
s.copyToClipboard, s.copyToClipboard,

View File

@@ -85,7 +85,7 @@ CvsSettingsPage::CvsSettingsPage(CvsSettings *settings)
Group { Group {
title(Tr::tr("Configuration")), title(Tr::tr("Configuration")),
Form { Form {
s.binaryPath, s.binaryPath, br,
s.cvsRoot s.cvsRoot
} }
}, },
@@ -93,7 +93,7 @@ CvsSettingsPage::CvsSettingsPage(CvsSettings *settings)
title(Tr::tr("Miscellaneous")), title(Tr::tr("Miscellaneous")),
Column { Column {
Form { Form {
s.timeout, s.timeout, br,
s.diffOptions, s.diffOptions,
}, },
s.describeByCommitId, s.describeByCommitId,

View File

@@ -97,10 +97,10 @@ GitLabServerWidget::GitLabServerWidget(Mode m, QWidget *parent)
Row { Row {
Form { Form {
m_host, m_host, br,
m_description, m_description, br,
m_token, m_token, br,
m_port, m_port, br,
m_secure, m_secure,
m == Edit ? normalMargin : noMargin m == Edit ? normalMargin : noMargin
}, },

View File

@@ -66,7 +66,7 @@ MercurialSettingsPage::MercurialSettingsPage(MercurialSettings *settings)
Group { Group {
title(Tr::tr("User")), title(Tr::tr("User")),
Form { Form {
s.userName, s.userName, br,
s.userEmail s.userEmail
} }
}, },

View File

@@ -28,9 +28,9 @@ public:
using namespace Layouting; using namespace Layouting;
Form { Form {
s.flushEnabled, s.flushEnabled, br,
s.flushInterval, s.flushInterval, br,
s.aggregateTraces s.aggregateTraces, br,
}.attachTo(this); }.attachTo(this);
} }

View File

@@ -99,7 +99,7 @@ SubversionSettingsPage::SubversionSettingsPage(SubversionSettings *settings)
title(Tr::tr("Authentication")), title(Tr::tr("Authentication")),
s.useAuthentication.groupChecker(), s.useAuthentication.groupChecker(),
Form { Form {
s.userName, s.userName, br,
s.password, s.password,
} }
}, },