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

Commit b50e5d0e authored by Ben Reich's avatar Ben Reich
Browse files

Fix typo of isInitailSearch to isInitialSearch

Test: None
Bug: None
Flag: NONE Local variable rename
Change-Id: Ie4f2087ac388a012bd1f8a0aec70d4b85b26b03c
parent 1c00687d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -264,11 +264,11 @@ public abstract class BaseActivity

            @Override
            public void onSearchViewFocusChanged(boolean hasFocus) {
                final boolean isInitailSearch
                final boolean isInitialSearch
                        = !TextUtils.isEmpty(mSearchManager.getCurrentSearch())
                        && TextUtils.isEmpty(mSearchManager.getSearchViewText());
                if (hasFocus) {
                    if (!isInitailSearch) {
                    if (!isInitialSearch) {
                        SearchFragment.showFragment(getSupportFragmentManager(),
                                mSearchManager.getSearchViewText());
                    }