From ba3f47e24a7f9ff0ec05667fec40a55f2c637efc Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Fri, 17 Feb 2017 23:29:33 +0100 Subject: [PATCH] ProjectExplorer: Remove right margin in ProjectWelcomePage Make use of the right space. Also, this moves the scrollbars to the border, which looks more conventional (and which was the case in welcomescreen1). Change-Id: Icad9dedf80832012227d5ee6fb05083180bddf5d Reviewed-by: hjk --- src/plugins/projectexplorer/projectwelcomepage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/projectwelcomepage.cpp b/src/plugins/projectexplorer/projectwelcomepage.cpp index 6c5a97cc0f8..fa20497221d 100644 --- a/src/plugins/projectexplorer/projectwelcomepage.cpp +++ b/src/plugins/projectexplorer/projectwelcomepage.cpp @@ -546,7 +546,7 @@ public: vbox2->addWidget(projectsList); auto hbox = new QHBoxLayout(this); - hbox->setContentsMargins(30, 27, 27, 27); + hbox->setContentsMargins(30, 27, 0, 27); hbox->addItem(vbox1); hbox->addSpacing(d); hbox->addItem(vbox2);