mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-28 15:56:49 +00:00
Code cleanup: recycle typed arrays when they are no longer needed
The border animator does not need the typed array anymore after initialization. recycling the object. Flag: ENABLE_KEYBOARD_QUICK_SWITCH Fixes: 282202504 Test: changed focus in quick switch view and overview Change-Id: Iea9077e49e754894008899dfc9b90e3876b53051
This commit is contained in:
@@ -195,6 +195,9 @@ public class KeyboardQuickSwitchViewController {
|
||||
// focus a less recent app or loop back to the opposite end
|
||||
: ((mCurrentFocusIndex + 1) % taskCount));
|
||||
|
||||
if (mCurrentFocusIndex == toIndex) {
|
||||
return true;
|
||||
}
|
||||
mKeyboardQuickSwitchView.animateFocusMove(mCurrentFocusIndex, toIndex);
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user