Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 11430ad2 authored by Matt Pietal's avatar Matt Pietal Committed by Android (Google) Code Review
Browse files

Merge "Fix jank on shade expansion" into main

parents 11885571 9814cbd0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ object KeyguardClockViewBinder {
            }
        }
        keyguardRootView.repeatWhenAttached {
            repeatOnLifecycle(Lifecycle.State.STARTED) {
            repeatOnLifecycle(Lifecycle.State.CREATED) {
                launch {
                    if (!migrateClocksToBlueprint()) return@launch
                    viewModel.currentClock.collect { currentClock ->
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ object KeyguardSmartspaceViewBinder {
        blueprintInteractor: KeyguardBlueprintInteractor,
    ) {
        keyguardRootView.repeatWhenAttached {
            repeatOnLifecycle(Lifecycle.State.STARTED) {
            repeatOnLifecycle(Lifecycle.State.CREATED) {
                launch {
                    if (!migrateClocksToBlueprint()) return@launch
                    clockViewModel.hasCustomWeatherDataDisplay.collect { hasCustomWeatherDataDisplay