aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2018-07-09 11:43:35 +0200
committerEike Ziller <eike.ziller@qt.io>2018-07-10 07:53:11 +0000
commit4c144b45abdab3b6f4b0609cfc56e0463c13d32d (patch)
treeb1e1401bf3e949f9339eb812afa07439e53d5bbf
parented30522bb87b5262ac9c44534122bdd88228ba04 (diff)
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 <hjk@qt.io>
-rw-r--r--src/plugins/qtsupport/gettingstartedwelcomepage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qtsupport/gettingstartedwelcomepage.cpp b/src/plugins/qtsupport/gettingstartedwelcomepage.cpp
index 5e9b3dc076..e0698965e2 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;