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

Commit 3c7272f1 authored by Lauren Winston's avatar Lauren Winston
Browse files

Add feature flag for Simple Cursor a11y feature.

Test: manual
Bug: 239976504

Change-Id: I6011f1817ff7d42a8f586acce40f009acdc53fc8
parent 811647ba
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -107,6 +107,15 @@ public class FeatureFlagUtils {
     */
    public static final String SETTINGS_ENABLE_CLEAR_CALLING = "settings_enable_clear_calling";


    /** Flag to enable / disable the Simple Cursor accessibility feature in
     *  Settings.
     * @hide
     */
    public static final String SETTINGS_ACCESSIBILITY_SIMPLE_CURSOR =
            "settings_accessibility_simple_cursor";


    private static final Map<String, String> DEFAULT_FLAGS;

    static {
@@ -138,6 +147,7 @@ public class FeatureFlagUtils {
        DEFAULT_FLAGS.put(SETTINGS_AUTO_TEXT_WRAPPING, "false");
        DEFAULT_FLAGS.put(SETTINGS_GUEST_MODE_UX_CHANGES, "true");
        DEFAULT_FLAGS.put(SETTINGS_ENABLE_CLEAR_CALLING, "false");
        DEFAULT_FLAGS.put(SETTINGS_ACCESSIBILITY_SIMPLE_CURSOR, "false");
    }

    private static final Set<String> PERSISTENT_FLAGS;