From 4fc8582da526c1c522102399b6f3d49004459521 Mon Sep 17 00:00:00 2001 From: Yari Polla Date: Sun, 12 Mar 2023 21:03:21 +0100 Subject: [PATCH] homescreen/halcyon: visual adjustments --- .../homescreens/halcyon/package/contents/ui/GridAppList.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/containments/homescreens/halcyon/package/contents/ui/GridAppList.qml b/containments/homescreens/halcyon/package/contents/ui/GridAppList.qml index cec2ab45..6954768f 100644 --- a/containments/homescreens/halcyon/package/contents/ui/GridAppList.qml +++ b/containments/homescreens/halcyon/package/contents/ui/GridAppList.qml @@ -59,7 +59,7 @@ MobileShell.GridView { header: MobileShell.BaseItem { implicitWidth: gridView.effectiveContentWidth - topPadding: PlasmaCore.Units.largeSpacing + Math.round(gridView.height * 0.2) + topPadding: PlasmaCore.Units.largeSpacing + Math.round(gridView.height * 0.1) bottomPadding: PlasmaCore.Units.largeSpacing leftPadding: PlasmaCore.Units.smallSpacing @@ -103,4 +103,8 @@ MobileShell.GridView { MobileShell.ShellUtil.launchApp(application.storageId); } } + + Component.onCompleted: { + goToBeginning(); + } }