homescreens/halcyon: Change placeholder icon to arrow

Helps to teach users where the application list is.
This commit is contained in:
Devin Lin 2022-09-25 22:13:37 -04:00
parent fd5eb22a09
commit f4e6d6b69a

View file

@ -281,7 +281,7 @@ MobileShell.GridView {
Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter
implicitWidth: PlasmaCore.Units.iconSizes.large implicitWidth: PlasmaCore.Units.iconSizes.large
implicitHeight: width implicitHeight: width
source: "emblem-favorite" source: "arrow-right-double"
color: "white" color: "white"
} }
@ -295,5 +295,9 @@ MobileShell.GridView {
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignHCenter
text: i18n("Add applications to your favourites so they show up here.") text: i18n("Add applications to your favourites so they show up here.")
} }
TapHandler {
onLongPressed: root.openConfigureRequested()
}
} }
} }