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(); + } }