From 9ff119282b191303953106b2cdeac88a8b831320 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Mon, 6 Mar 2023 23:03:46 -0800 Subject: [PATCH] homescreens/halcyon: Fix app icon during launch from favourites page --- .../halcyon/package/contents/ui/FavoritesAppDelegate.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containments/homescreens/halcyon/package/contents/ui/FavoritesAppDelegate.qml b/containments/homescreens/halcyon/package/contents/ui/FavoritesAppDelegate.qml index efe2367d..9390a163 100644 --- a/containments/homescreens/halcyon/package/contents/ui/FavoritesAppDelegate.qml +++ b/containments/homescreens/halcyon/package/contents/ui/FavoritesAppDelegate.qml @@ -73,7 +73,7 @@ Item { if (application.running) { launchAppWithAnim(0, 0, "", applicationName, applicationStorageId); } else { - launchAppWithAnim(delegate.x + (PlasmaCore.Units.smallSpacing * 2), delegate.y + (PlasmaCore.Units.smallSpacing * 2), iconLoader.source, applicationName, applicationStorageId); + launchAppWithAnim(delegate.x + (PlasmaCore.Units.smallSpacing * 2), delegate.y + (PlasmaCore.Units.smallSpacing * 2), delegate.applicationIcon, applicationName, applicationStorageId); } } }