forked from qt-creator/qt-creator
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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user