Utils: Make Layouting::Title even less special

This goes a bit in the direction of property settigs for
arbitrary layout items.

Change-Id: I98500e213e3b22cc99038a1bcf688183588be248
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
hjk
2022-07-21 12:10:56 +02:00
parent aed29ad8c3
commit ba51e3acac
3 changed files with 41 additions and 26 deletions

View File

@@ -59,7 +59,7 @@ public:
DebuggerSettings &s = *debuggerSettings();
Group general {
Title { Tr::tr("General") },
title(Tr::tr("General")),
Column {
Row { s.gdbWatchdogTimeout, Stretch() },
s.skipKnownFrames,
@@ -77,11 +77,11 @@ public:
Column commands {
Group {
Title { Tr::tr("Additional Startup Commands") },
title(Tr::tr("Additional Startup Commands")),
Column { s.gdbStartupCommands }
},
Group {
Title { Tr::tr("Additional Attach Commands") },
title(Tr::tr("Additional Attach Commands")),
Column { s.gdbPostAttachCommands },
},
Stretch()