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

Commit 97b144bf authored by narinder Rana's avatar narinder Rana
Browse files

Allow Access popup action button color

parent e6bc4160
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -102,8 +102,7 @@ public class OperationDialogFragment extends DialogFragment {

        builder.setMessage(Html.fromHtml(message));
        builder.setPositiveButton(
                 R.string.close,

                Html.fromHtml("<font color='#007FFF'>"+R.string.close+"</font>"),
                new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int id) {
+2 −2
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ public class ConfirmFragment extends DialogFragment {
                builder.setTitle(text);
                builder.setMessage(message);
                builder.setPositiveButton(
                        R.string.allow,
                        Html.fromHtml("<font color='#007FFF'>"+ R.string.allow+"</font>"),
                        (DialogInterface dialog, int id) -> {
                            pickResult.increaseActionCount();
                            mActions.finishPicking(uri);
@@ -104,7 +104,7 @@ public class ConfirmFragment extends DialogFragment {
                break;

        }
        builder.setNegativeButton(android.R.string.cancel,
        builder.setNegativeButton(Html.fromHtml("<font color='#007FFF'>"+ android.R.string.cancel+"</font>"),
                (DialogInterface dialog, int id) -> pickResult.increaseActionCount());