summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/icons/BaseIconCache.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3/icons/BaseIconCache.java')
-rw-r--r--src/com/android/launcher3/icons/BaseIconCache.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/launcher3/icons/BaseIconCache.java b/src/com/android/launcher3/icons/BaseIconCache.java
index 6433103f9..9198c2482 100644
--- a/src/com/android/launcher3/icons/BaseIconCache.java
+++ b/src/com/android/launcher3/icons/BaseIconCache.java
@@ -261,7 +261,7 @@ public class BaseIconCache {
protected void applyCacheEntry(CacheEntry entry, ItemInfoWithIcon info) {
info.title = Utilities.trim(entry.title);
info.contentDescription = entry.contentDescription;
- ((entry.icon == null) ? getDefaultIcon(info.user) : entry).applyTo(info);
+ info.applyFrom((entry.icon == null) ? getDefaultIcon(info.user) : entry);
}
public synchronized BitmapInfo getDefaultIcon(UserHandle user) {