summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/IconCache.java
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2016-03-03 13:19:24 -0800
committerSunny Goyal <sunnygoyal@google.com>2016-03-03 13:30:57 -0800
commit531cda693d07eba9dce6b793848749acaf28c0fd (patch)
treef364905e3cfc178acc95265f204b4df6e4a4efa6 /src/com/android/launcher3/IconCache.java
parent935ef4226845db24e8017c3e41d70faafaa7f3cc (diff)
downloadandroid_packages_apps_Trebuchet-531cda693d07eba9dce6b793848749acaf28c0fd.tar.gz
android_packages_apps_Trebuchet-531cda693d07eba9dce6b793848749acaf28c0fd.tar.bz2
android_packages_apps_Trebuchet-531cda693d07eba9dce6b793848749acaf28c0fd.zip
Using a negative flag for icon notmalization
Change-Id: Iaa94aea730d2b5cc3f15f3578f240127ca0eef63
Diffstat (limited to 'src/com/android/launcher3/IconCache.java')
-rw-r--r--src/com/android/launcher3/IconCache.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/launcher3/IconCache.java b/src/com/android/launcher3/IconCache.java
index d39ae661e..f5fcf4761 100644
--- a/src/com/android/launcher3/IconCache.java
+++ b/src/com/android/launcher3/IconCache.java
@@ -803,7 +803,7 @@ public class IconCache {
private final static int DB_VERSION = 7;
private final static int RELEASE_VERSION = DB_VERSION +
- (FeatureFlags.LAUNCHER3_ICON_NORMALIZATION ? 1 : 0);
+ (FeatureFlags.LAUNCHER3_DISABLE_ICON_NORMALIZATION ? 0 : 1);
private final static String TABLE_NAME = "icons";
private final static String COLUMN_ROWID = "rowid";