From f4e6d6b69a2d5d35a55bcbe36f95de56a29151a2 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Sun, 25 Sep 2022 22:13:37 -0400 Subject: [PATCH] homescreens/halcyon: Change placeholder icon to arrow Helps to teach users where the application list is. --- .../halcyon/package/contents/ui/FavoritesGrid.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/containments/homescreens/halcyon/package/contents/ui/FavoritesGrid.qml b/containments/homescreens/halcyon/package/contents/ui/FavoritesGrid.qml index f055d2bb..3c672b4d 100644 --- a/containments/homescreens/halcyon/package/contents/ui/FavoritesGrid.qml +++ b/containments/homescreens/halcyon/package/contents/ui/FavoritesGrid.qml @@ -281,7 +281,7 @@ MobileShell.GridView { Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter implicitWidth: PlasmaCore.Units.iconSizes.large implicitHeight: width - source: "emblem-favorite" + source: "arrow-right-double" color: "white" } @@ -295,5 +295,9 @@ MobileShell.GridView { horizontalAlignment: Text.AlignHCenter text: i18n("Add applications to your favourites so they show up here.") } + + TapHandler { + onLongPressed: root.openConfigureRequested() + } } }