Skip to content

Commit 0e45034

Browse files
committed
change note delete confirmation button from OK to Delete
1 parent 1c7babc commit 0e45034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/kotlin/com/simplemobiletools/notes/pro/dialogs/DeleteNoteDialog.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class DeleteNoteDialog(val activity: SimpleActivity, val note: Note, val callbac
2626
}
2727

2828
activity.getAlertDialogBuilder()
29-
.setPositiveButton(R.string.ok) { dialog, which -> dialogConfirmed(view.delete_note_checkbox.isChecked) }
29+
.setPositiveButton(R.string.delete) { dialog, which -> dialogConfirmed(view.delete_note_checkbox.isChecked) }
3030
.setNegativeButton(R.string.cancel, null)
3131
.apply {
3232
activity.setupDialogStuff(view, this)

0 commit comments

Comments
 (0)