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

Commit 9f6e0f88 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Disable auto correct/suggest on folder edit text Bug: 160075575" into...

Merge "Disable auto correct/suggest on folder edit text Bug: 160075575" into ub-launcher3-rvc-dev am: fe4d64f4

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

Change-Id: If3e3f0b4f0f33a21d8923b08f939b3f6227b494c
parents c6762541 fe4d64f4
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);