From 29f014ad0448ebbd3f471b79087879f6d67125ba Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Wed, 3 Jul 2024 12:43:08 -0400 Subject: [PATCH] homescreen: Don't animate after unlock KWin appears to freeze frames prior to locking, and so this animation looks very glitchy and jittery. It also causes problems if apps are already activated. Remove it for now so that it's smoother. --- .../mobileshell/qml/homescreen/HomeScreen.qml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/components/mobileshell/qml/homescreen/HomeScreen.qml b/components/mobileshell/qml/homescreen/HomeScreen.qml index d7a55b85..1a9af191 100644 --- a/components/mobileshell/qml/homescreen/HomeScreen.qml +++ b/components/mobileshell/qml/homescreen/HomeScreen.qml @@ -133,19 +133,6 @@ Item { //END API implementation - Connections { - target: MobileShellState.LockscreenDBusClient - - function onLockscreenLocked() { - itemContainer.zoomOut(); - } - - function onLockscreenUnlocked() { - // run zoom animation after login - itemContainer.zoomIn(); - } - } - Component.onCompleted: { // determine the margins used evaluateMargins();