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

Commit 33011356 authored by Hyunyoung Song's avatar Hyunyoung Song Committed by Automerger Merge Worker
Browse files

Disable auto correct/suggest on folder edit text am: 9b98d130

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/12291900

Change-Id: I49ad0f2a9ef73bad1a5d7e0dc609abedcacab27c
parents d528e9dc 9b98d130
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -241,9 +241,9 @@ public class Folder extends AbstractFloatingView implements ClipPathView, DragSo
        mFolderName.setSelectAllOnFocus(true);
        mFolderName.setInputType(mFolderName.getInputType()
                & ~InputType.TYPE_TEXT_FLAG_AUTO_CORRECT
                & ~InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS
                | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS
                | InputType.TYPE_TEXT_FLAG_CAP_WORDS);
        mFolderName.forceDisableSuggestions(!FeatureFlags.FOLDER_NAME_SUGGEST.get());
        mFolderName.forceDisableSuggestions(true);

        mFooter = findViewById(R.id.folder_footer);