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

Commit 982eebd0 authored by Danesh M's avatar Danesh M Committed by Roman Birg
Browse files

SystemUI : NavigationBar Customization

Change-Id: I40dd267d42817f4fec092ffe373c1cd380d75f09
parent c46f74b1
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1823,6 +1823,12 @@ public final class Settings {
         */
        public static final int ADVANCED_SETTINGS_DEFAULT = 0;

        /**
         * Navigation controls to Use
         * @hide
         */
        public static final String NAV_BUTTONS = "nav_buttons";

        /**
         * @deprecated Use {@link android.provider.Settings.Global#AIRPLANE_MODE_ON} instead
         */
+1 −0
Original line number Diff line number Diff line
@@ -227,6 +227,7 @@
    <protected-broadcast android:name="android.intent.action.PROXY_CHANGE" />

    <protected-broadcast android:name="android.os.UpdateLock.UPDATE_LOCK_CHANGED" />
    <protected-broadcast android:name="android.intent.action.NAVBAR_EDIT" />

    <protected-broadcast android:name="android.intent.action.DREAMING_STARTED" />
    <protected-broadcast android:name="android.intent.action.DREAMING_STOPPED" />
+11 −0
Original line number Diff line number Diff line
@@ -1827,6 +1827,17 @@ public class DatabaseHelper extends SQLiteOpenHelper {
            upgradeHeadsUpSettingFromNone(db);
            upgradeDeviceNameFromNone(db);

            // Removal of back/recents is no longer supported
            // due to pinned apps
            db.beginTransaction();
            try {
                db.execSQL("DELETE FROM system WHERE name='"
                        + Settings.System.NAV_BUTTONS + "'");
                db.setTransactionSuccessful();
            } finally {
                db.endTransaction();
            }

            upgradeVersion = 114;
        }

+536 B
Loading image diff...
+532 B
Loading image diff...
Loading