Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b59d0618 authored by Svetoslav Ganov's avatar Svetoslav Ganov Committed by Android Git Automerger
Browse files

am b6585d19: Merge "Double input focus and focus movement in list not working." into jb-dev

* commit 'b6585d19':
  Double input focus and focus movement in list not working.
parents dd0a64a9 b6585d19
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -765,8 +765,9 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
        if (mFocused == null) {
            super.clearFocus();
        } else {
            mFocused.clearFocus();
            View focused = mFocused;
            mFocused = null;
            focused.clearFocus();
        }
    }

+1 −1
Original line number Diff line number Diff line
@@ -1344,8 +1344,8 @@ public abstract class AbsListView extends AdapterView<ListAdapter> implements Te
                    }
                } return;
            }
            super.addFocusables(views, direction, focusableMode);
        }
        super.addFocusables(views, direction, focusableMode);
    }

    @Override