diff --git a/share/qtcreator/welcomescreen/widgets/ExampleGridView.qml b/share/qtcreator/welcomescreen/widgets/ExampleGridView.qml index 379e09ff22a85ad420300a55ad15ce5b82de1a7e..c9a0afb99a222a965e428188f2bf6092a6fcc816 100644 --- a/share/qtcreator/welcomescreen/widgets/ExampleGridView.qml +++ b/share/qtcreator/welcomescreen/widgets/ExampleGridView.qml @@ -36,7 +36,7 @@ GridView { interactive: false width: scrollArea.width property int columns: Math.max(Math.floor(width / cellWidth), 1) - height: 400 * (count - columns) / columns + 800 + height: 400 * Math.ceil(count / columns) cellHeight: 400 cellWidth: 350