Merge "Make the loader thread a Looper and move the package manager updates into that thread as well." into gingerbread
This commit is contained in:
commit
68925c5359
|
@ -2281,9 +2281,11 @@ public final class Launcher extends Activity
|
|||
*
|
||||
* Implementation of the method from LauncherModel.Callbacks.
|
||||
*/
|
||||
public void bindAppsRemoved(ArrayList<ApplicationInfo> apps) {
|
||||
public void bindAppsRemoved(ArrayList<ApplicationInfo> apps, boolean permanent) {
|
||||
removeDialog(DIALOG_CREATE_SHORTCUT);
|
||||
mWorkspace.removeItems(apps);
|
||||
if (permanent) {
|
||||
mWorkspace.removeItems(apps);
|
||||
}
|
||||
mAllAppsGrid.removeApps(apps);
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue