Skip to content

Commit

Permalink
button text reversed!
Browse files Browse the repository at this point in the history
  • Loading branch information
danny8376 committed Oct 17, 2023
1 parent 01798bc commit 4492723
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -554,8 +554,8 @@ class MSET9Installer : Fragment() {
val title = getString(R.string.setup_alert_dummy_db_title)
showAlert(title, getString(R.string.setup_alert_dummy_db_prompt)) { noDb ->
noDb
.setNegativeButton(getString(R.string.setup_alert_dummy_db_prompt_yes)) { _, _ -> }
.setPositiveButton(getString(R.string.setup_alert_dummy_db_prompt_no)) { _, _ ->
.setNegativeButton(getString(R.string.setup_alert_dummy_db_prompt_no)) { _, _ -> }
.setPositiveButton(getString(R.string.setup_alert_dummy_db_prompt_yes)) { _, _ ->
if (createDummyDbs()) {
Log.i("Setup", "Dummy DB Created")
showAlert(title, "${getString(R.string.setup_alert_dummy_db_created)}\n\n${getString(R.string.setup_alert_dummy_db_reset)}") { dummyFound ->
Expand Down

0 comments on commit 4492723

Please sign in to comment.