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

Commit 747eed42 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Reset all TARE constants." into tm-dev am: 42156e7b

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

Change-Id: I7bc23b11fcdf6608bf888def2532a58b60c8d447
parents 0b603a3d 42156e7b
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -69,11 +69,14 @@ public class TareHomePage extends Activity {
    }

    /** Reverts the TARE settings to the original default settings */
    // TODO: Establish default TARE values and make this method revert all settings back to default.
    public void revertSettings(View v) {
        Toast.makeText(this, R.string.tare_settings_reverted_toast, Toast.LENGTH_LONG).show();
        Settings.Global.putString(getApplicationContext().getContentResolver(),
                Settings.Global.ENABLE_TARE, null);
        Settings.Global.putString(getApplicationContext().getContentResolver(),
                Settings.Global.TARE_ALARM_MANAGER_CONSTANTS, null);
        Settings.Global.putString(getApplicationContext().getContentResolver(),
                Settings.Global.TARE_JOB_SCHEDULER_CONSTANTS, null);
        setEnabled(Settings.Global.DEFAULT_ENABLE_TARE == SETTING_VALUE_ON);
    }