summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuK1337 <priv.luk@gmail.com>2019-11-23 11:35:49 +0100
committerMichael Bestas <mkbestas@lineageos.org>2019-12-14 18:16:08 +0200
commitf1dd53d9912f03452db30400774c959bbbba9ea5 (patch)
tree212d4cbfec630a743b89ae426b39eea7a67317a2
parent43fd0d08d2cbafd82139007b8883a64332aa60a7 (diff)
downloadandroid_packages_apps_Trebuchet-f1dd53d9912f03452db30400774c959bbbba9ea5.tar.gz
android_packages_apps_Trebuchet-f1dd53d9912f03452db30400774c959bbbba9ea5.tar.bz2
android_packages_apps_Trebuchet-f1dd53d9912f03452db30400774c959bbbba9ea5.zip
Don't discard custom grid on config changes
Change-Id: Ibfa2eafec50c9fe79d1e9594ddc68fb5266ecb18
-rw-r--r--src/com/android/launcher3/InvariantDeviceProfile.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/com/android/launcher3/InvariantDeviceProfile.java b/src/com/android/launcher3/InvariantDeviceProfile.java
index bde87cb50..8a8a2fbe5 100644
--- a/src/com/android/launcher3/InvariantDeviceProfile.java
+++ b/src/com/android/launcher3/InvariantDeviceProfile.java
@@ -288,9 +288,7 @@ public class InvariantDeviceProfile {
InvariantDeviceProfile oldProfile = new InvariantDeviceProfile(this);
// Re-init grid
- // TODO(b/131867841): We pass in null here so that we can calculate the closest profile
- // without the bias of the grid name.
- initGrid(context, null);
+ initGrid(context, Utilities.getPrefs(context).getString(KEY_IDP_GRID_NAME, null));
int changeFlags = 0;
if (numRows != oldProfile.numRows ||