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

Commit 6d5f67f8 authored by Robert Burns's avatar Robert Burns
Browse files

Fix hardcoded "Cancel" string in Navbar editor

Change-Id: I81cf60bf0dc735a96569416be0ba458375d47e1b
parent 24665387
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -228,7 +228,7 @@ public class NavbarEditor implements OnTouchListener {
                        ((KeyButtonView) view).setInfo(list.getItem(which).toString(), mVertical);
                    }
                })
                .setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
                .setNegativeButton(android.R.string.cancel, new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int id) {
                        dialog.cancel();
                    }