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.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user