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.
This commit is contained in:
Romain Guy
2009-06-01 16:11:41 -07:00
parent bb593755d2
commit c2e24c0a37
+1 -1
View File
@@ -635,7 +635,7 @@ public class Workspace extends ViewGroup implements DropTarget, DragSource, Drag
}
@Override
public void addFocusables(ArrayList<View> views, int direction) {
public void addFocusables(ArrayList<View> views, int direction, int focusableMode) {
if (mLauncher.isDrawerDown()) {
final Folder openFolder = getOpenFolder();
if (openFolder == null) {