summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAdam Cohen <adamcohen@google.com>2013-09-29 14:22:48 -0700
committerAdam Cohen <adamcohen@google.com>2013-09-29 14:23:33 -0700
commit949debe6e64034be1625ec21de100ea7e68545e2 (patch)
treec6a47a5d3c69e6fcc0e742e530d8d06ad8c30fad /src
parent82398369f3a925ce15a37a968d050a4de422c7fa (diff)
downloadandroid_packages_apps_Trebuchet-949debe6e64034be1625ec21de100ea7e68545e2.tar.gz
android_packages_apps_Trebuchet-949debe6e64034be1625ec21de100ea7e68545e2.tar.bz2
android_packages_apps_Trebuchet-949debe6e64034be1625ec21de100ea7e68545e2.zip
Fix issue where we weren't saving span after resize drop (issue 9533407)
Change-Id: I760bf505ce9c894aedb6f1d0def63cdc7d39271a
Diffstat (limited to 'src')
-rw-r--r--src/com/android/launcher3/Workspace.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/launcher3/Workspace.java b/src/com/android/launcher3/Workspace.java
index ab52c4eea..9e43dd81b 100644
--- a/src/com/android/launcher3/Workspace.java
+++ b/src/com/android/launcher3/Workspace.java
@@ -2649,8 +2649,8 @@ public class Workspace extends SmoothPagedView
}
}
- LauncherModel.moveItemInDatabase(mLauncher, info, container, screenId, lp.cellX,
- lp.cellY);
+ LauncherModel.modifyItemInDatabase(mLauncher, info, container, screenId, lp.cellX,
+ lp.cellY, item.spanX, item.spanY);
} else {
// If we can't find a drop location, we return the item to its original position
CellLayout.LayoutParams lp = (CellLayout.LayoutParams) cell.getLayoutParams();