From c2e24c0a37ddeab930f731c062705d435e477f75 Mon Sep 17 00:00:00 2001 From: Romain Guy Date: Mon, 1 Jun 2009 16:11:41 -0700 Subject: Fixes #1876911 Moving the trackball up or down on a screen in Home could send the focus to the left/right, which can be confusing. This issue was introduced by a change in the way addFocusables() work and Home did not respect the new behavior. --- src/com/android/launcher/Workspace.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/com/android/launcher/Workspace.java') diff --git a/src/com/android/launcher/Workspace.java b/src/com/android/launcher/Workspace.java index e4d256028..d91519c94 100644 --- a/src/com/android/launcher/Workspace.java +++ b/src/com/android/launcher/Workspace.java @@ -635,7 +635,7 @@ public class Workspace extends ViewGroup implements DropTarget, DragSource, Drag } @Override - public void addFocusables(ArrayList views, int direction) { + public void addFocusables(ArrayList views, int direction, int focusableMode) { if (mLauncher.isDrawerDown()) { final Folder openFolder = getOpenFolder(); if (openFolder == null) { -- cgit v1.2.3