From 4c144b45abdab3b6f4b0609cfc56e0463c13d32d Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Mon, 9 Jul 2018 11:43:35 +0200 Subject: [PATCH] Show 4 columns of examples within Qt Creator's default window width By reducing the width of the individual items. Otherwise first startup looks a bit stupid with a large empty column to the right. Change-Id: Iff7fa343a5c36181f09e1e3c18307dc55bd11abc Reviewed-by: hjk --- src/plugins/qtsupport/gettingstartedwelcomepage.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/qtsupport/gettingstartedwelcomepage.cpp b/src/plugins/qtsupport/gettingstartedwelcomepage.cpp index 5e9b3dc0765..e0698965e24 100644 --- a/src/plugins/qtsupport/gettingstartedwelcomepage.cpp +++ b/src/plugins/qtsupport/gettingstartedwelcomepage.cpp @@ -70,8 +70,8 @@ namespace Internal { const char C_FALLBACK_ROOT[] = "ProjectsFallbackRoot"; -const int itemWidth = 240; -const int itemHeight = 240; +const int itemWidth = 230; +const int itemHeight = 230; const int itemGap = 10; const int tagsSeparatorY = itemHeight - 60;