From 60098e5fea81a66c18486e8cad2ef8a6283c0ce9 Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Thu, 15 Sep 2022 19:44:15 +0200 Subject: [PATCH] ProjectExplorer: Remove extra margins around CustomParser widget Change-Id: I840211296c45391bc96474220663f6a56df22fe8 Reviewed-by: Christian Kandeler --- src/plugins/projectexplorer/customparser.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/projectexplorer/customparser.cpp b/src/plugins/projectexplorer/customparser.cpp index 967c20733df..946b4074e8a 100644 --- a/src/plugins/projectexplorer/customparser.cpp +++ b/src/plugins/projectexplorer/customparser.cpp @@ -266,6 +266,7 @@ public: "to create entries in Issues.
" "The parsers can be configured here.")); layout->addWidget(explanatoryLabel); + layout->setContentsMargins(0, 0, 0, 0); connect(explanatoryLabel, &QLabel::linkActivated, [] { Core::ICore::showOptionsDialog(Constants::CUSTOM_PARSERS_SETTINGS_PAGE_ID); });