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

Commit 5062435c authored by Felipe Leme's avatar Felipe Leme
Browse files

Changed "Take Bug Report" action to call 'bugreportplus'.

'bugreportplus' is more user-friendly (it shows a system notification
with the progress, allow user to cancel, etc...), at the cost of
consuming more resources. As such, the "Take Bug Report" UI will be
changed to offer the user a combo with these 2 options, but for now it's
always going to be 'bugreportplus'

BUG: 26034608
Change-Id: Idbb325fe7cd18e487197b2fb79cfc264e9859570
parent c8c28207
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ public class BugreportPreference extends CustomDialogPreference {
    @Override
    protected void onClick(DialogInterface dialog, int which) {
        if (which == DialogInterface.BUTTON_POSITIVE) {
            SystemProperties.set("ctl.start", "bugreport");
            SystemProperties.set("ctl.start", "bugreportplus");
        }
    }
}