diff options
Diffstat (limited to 'HomeDefault.ui.qml')
-rw-r--r-- | HomeDefault.ui.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/HomeDefault.ui.qml b/HomeDefault.ui.qml index 9b1276d..4c6bb47 100644 --- a/HomeDefault.ui.qml +++ b/HomeDefault.ui.qml @@ -262,7 +262,7 @@ Flickable { } cellWidth: 142 cellHeight: 46 - implicitHeight: width < 284 ? cellHeight * 5 : width < 426 ? cellHeight * 3 : width < 710 ? cellHeight * 2 : cellHeight + implicitHeight: Math.min(Math.ceil(cellWidth * count / width) * cellHeight, count * cellHeight) model: ["Web Design", "Development", "Graphic Design", "Marketing", "Finance"] delegate: TabItem {} } |