mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-03 17:36:49 +00:00
Default icon should match platform one even on N and below devices.
Bug: 63083094 Change-Id: Ie08ccaf63a49fa766f0d51d840d7763fc4bf2a5a
This commit is contained in:
@@ -120,7 +120,8 @@ public class IconCache {
|
||||
}
|
||||
|
||||
private Drawable getFullResDefaultActivityIcon() {
|
||||
return getFullResIcon(Resources.getSystem(), android.R.drawable.sym_def_app_icon);
|
||||
return getFullResIcon(Resources.getSystem(), Utilities.isAtLeastO() ?
|
||||
android.R.drawable.sym_def_app_icon : android.R.mipmap.sym_def_app_icon);
|
||||
}
|
||||
|
||||
private Drawable getFullResIcon(Resources resources, int iconId) {
|
||||
|
||||
Reference in New Issue
Block a user