Fix regression: taps were not sent to wallpaper

Change-Id: I2114cf8161c7a3b0fa6849f15e5a8e4bd45dbabb
This commit is contained in:
Michael Jurka
2011-08-09 15:00:48 -07:00
parent cddd8d3cad
commit d771c96e5d
4 changed files with 22 additions and 11 deletions
@@ -245,9 +245,8 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen
}
@Override
protected void onWallpaperTap(MotionEvent ev) {
int action = ev.getAction();
if (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_DOWN) {
protected void onUnhandledTap(MotionEvent ev) {
if (LauncherApplication.isScreenLarge()) {
// Dismiss AppsCustomize if we tap
mLauncher.showWorkspace(true);
}