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

Commit 3bc5329a authored by narinder Rana's avatar narinder Rana
Browse files

Allow Access popup action button color :build error

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

        builder.setMessage(Html.fromHtml(message));
        builder.setPositiveButton(
                Html.fromHtml("<font color='#007FFF'>"+R.string.close+"</font>"),
                Html.fromHtml("<font color='#007FFF'>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(
                        Html.fromHtml("<font color='#007FFF'>"+ R.string.allow+"</font>"),
                        Html.fromHtml("<font color='#007FFF'>Allow</font>"),
                        (DialogInterface dialog, int id) -> {
                            pickResult.increaseActionCount();
                            mActions.finishPicking(uri);
@@ -104,7 +104,7 @@ public class ConfirmFragment extends DialogFragment {
                break;

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