Skip to content

Commit

Permalink
Merge pull request #764 from PhenoApps/issue/763
Browse files Browse the repository at this point in the history
Fixed trait editor delete all traits cancel string
  • Loading branch information
trife authored Oct 16, 2023
2 parents bc5b35b + 6bc6b37 commit 92a5a43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ private void showDeleteTraitDialog(@Nullable DialogInterface.OnClickListener onP
builder.setMessage(getString(R.string.dialog_delete_traits_message));

builder.setPositiveButton(getString(android.R.string.yes), onPositive);
builder.setNegativeButton(getString(android.R.string.no), onNegative);
builder.setNegativeButton(getString(R.string.dialog_no), onNegative);
builder.setOnDismissListener(onDismiss);

AlertDialog alert = builder.create();
Expand Down

0 comments on commit 92a5a43

Please sign in to comment.