From f7d51d851a01cde0b8f2ade8b7923943607a72aa Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Sun, 5 Mar 2023 22:08:14 -0800 Subject: [PATCH] mobileshell: Remove nonexistent function call --- components/mobileshell/qml/homescreen/HomeScreen.qml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/components/mobileshell/qml/homescreen/HomeScreen.qml b/components/mobileshell/qml/homescreen/HomeScreen.qml index ffc03138..8bfc3e96 100644 --- a/components/mobileshell/qml/homescreen/HomeScreen.qml +++ b/components/mobileshell/qml/homescreen/HomeScreen.qml @@ -278,12 +278,5 @@ Item { id: startupFeedback z: 999999 anchors.fill: parent - - // if the startup feedback closes, clear the shell's stored launching app - onVisibleChanged: { - if (!visible) { - MobileShell.ShellUtil.clearLaunchingApp(); - } - } } }