Commit dcbb4eab authored by vvb2060's avatar vvb2060 Committed by John Wu

Fix string

parent 068cedaa
......@@ -10,11 +10,11 @@ class RestoreAppDialog : DialogEvent() {
setTitle(R.string.settings_restore_app_title)
setMessage(R.string.restore_app_confirmation)
setButton(MagiskDialog.ButtonType.POSITIVE) {
text = R.string.yes
text = android.R.string.ok
onClick { HideAPK.restore(dialog.ownerActivity!!) }
}
setButton(MagiskDialog.ButtonType.NEGATIVE) {
text = R.string.no
text = android.R.string.cancel
}
setCancelable(true)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment