aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/extensionsystem/plugindetailsview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/extensionsystem/plugindetailsview.cpp')
-rw-r--r--src/libs/extensionsystem/plugindetailsview.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libs/extensionsystem/plugindetailsview.cpp b/src/libs/extensionsystem/plugindetailsview.cpp
index 8242d8dac6..49ba0815a3 100644
--- a/src/libs/extensionsystem/plugindetailsview.cpp
+++ b/src/libs/extensionsystem/plugindetailsview.cpp
@@ -53,7 +53,7 @@ public:
, license(createTextEdit())
, dependencies(new QListWidget(q))
{
- using namespace Utils::Layouting;
+ using namespace Layouting;
// clang-format off
Form {
@@ -68,8 +68,9 @@ public:
Tr::tr("Description:"), description, br,
Tr::tr("Copyright:"), copyright, br,
Tr::tr("License:"), license, br,
- Tr::tr("Dependencies:"), dependencies
- }.attachTo(q, WithoutMargins);
+ Tr::tr("Dependencies:"), dependencies,
+ noMargin
+ }.attachTo(q);
// clang-format on
}