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

Commit 5b4fad51 authored by Jorim Jaggi's avatar Jorim Jaggi Committed by android-build-merger
Browse files

Don\'t throw away wallpaper bitmap just because we are hidden. am: ed0e1a68 am: 840165f0

am: 0808da68

* commit '0808da68':
  Don't throw away wallpaper bitmap just because we are hidden.

Change-Id: Ic305fff516794eea7020039a9ba685b6d28d6dbd
parents 200052d5 0808da68
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -166,8 +166,9 @@ public class ImageWallpaper extends WallpaperService {
        }

        public void trimMemory(int level) {
            if (level >= ComponentCallbacks2.TRIM_MEMORY_RUNNING_LOW &&
                    mBackground != null) {
            if (level >= ComponentCallbacks2.TRIM_MEMORY_RUNNING_LOW
                    && level <= ComponentCallbacks2.TRIM_MEMORY_RUNNING_CRITICAL
                    && mBackground != null) {
                if (DEBUG) {
                    Log.d(TAG, "trimMemory");
                }