mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-18 18:28:20 +00:00
Do not shortcut show/hideSearchbar.
Bug: 11105305 Change-Id: I9745d6c851b2539032fdc377ce9ce80b6d67e7ab
This commit is contained in:
@@ -138,7 +138,6 @@ public class SearchDropTargetBar extends FrameLayout implements DragController.D
|
||||
* Shows and hides the search bar.
|
||||
*/
|
||||
public void showSearchBar(boolean animated) {
|
||||
if (!mIsSearchBarHidden) return;
|
||||
if (animated) {
|
||||
prepareStartAnimation(mQSBSearchBar);
|
||||
mQSBSearchBarAnim.reverse();
|
||||
@@ -153,7 +152,6 @@ public class SearchDropTargetBar extends FrameLayout implements DragController.D
|
||||
mIsSearchBarHidden = false;
|
||||
}
|
||||
public void hideSearchBar(boolean animated) {
|
||||
if (mIsSearchBarHidden) return;
|
||||
if (animated) {
|
||||
prepareStartAnimation(mQSBSearchBar);
|
||||
mQSBSearchBarAnim.start();
|
||||
|
||||
Reference in New Issue
Block a user