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

Commit e9504d4f authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Take a screenshot as soon as the phone unlocks" into sc-dev am: 900834f7

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14889011

Change-Id: I1232018866198dceab5696914bf9f600b27eae08
parents c53c8886 900834f7
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -1511,9 +1511,12 @@ public abstract class WallpaperService extends Service {
        void updatePage(EngineWindowPage currentPage, int pageIndx, int numPages,
                float xOffsetStep) {
            // to save creating a runnable, check twice
            long current = System.nanoTime() / 1_000_000;
            long current = SystemClock.elapsedRealtime();
            long lapsed = current - currentPage.getLastUpdateTime();
            if (lapsed < DEFAULT_UPDATE_SCREENSHOT_DURATION) {
            // Always update the page when the last update time is <= 0
            // This is important especially when the device first boots
            if (lapsed < DEFAULT_UPDATE_SCREENSHOT_DURATION
                    && currentPage.getLastUpdateTime() > 0) {
                return;
            }
            Surface surface = mSurfaceHolder.getSurface();