diff options
| author | 2024-02-18 10:25:04 -0500 | |
|---|---|---|
| committer | 2024-02-18 10:25:04 -0500 | |
| commit | 839ded7d595609cb17643ce4841e3b80c04440b5 (patch) | |
| tree | 15415b44f113212a6a15693d92e0d112d46c10a9 /src/android | |
| parent | Merge pull request #13066 from t895/touch-fix (diff) | |
| parent | android: Show cancel button for the content install notice (diff) | |
| download | yuzu-839ded7d595609cb17643ce4841e3b80c04440b5.tar.gz yuzu-839ded7d595609cb17643ce4841e3b80c04440b5.tar.xz yuzu-839ded7d595609cb17643ce4841e3b80c04440b5.zip | |
Merge pull request #13065 from t895/cancel-button-fail
android: Show cancel button for the content install notice
Diffstat (limited to 'src/android')
| -rw-r--r-- | src/android/app/src/main/java/org/yuzu/yuzu_emu/ui/main/MainActivity.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/ui/main/MainActivity.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/ui/main/MainActivity.kt index d16f8a931..757463a0b 100644 --- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/ui/main/MainActivity.kt +++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/ui/main/MainActivity.kt | |||
| @@ -498,7 +498,8 @@ class MainActivity : AppCompatActivity(), ThemeProvider { | |||
| 498 | this@MainActivity, | 498 | this@MainActivity, |
| 499 | titleId = R.string.content_install_notice, | 499 | titleId = R.string.content_install_notice, |
| 500 | descriptionId = R.string.content_install_notice_description, | 500 | descriptionId = R.string.content_install_notice_description, |
| 501 | positiveAction = { homeViewModel.setContentToInstall(documents) } | 501 | positiveAction = { homeViewModel.setContentToInstall(documents) }, |
| 502 | negativeAction = {} | ||
| 502 | ) | 503 | ) |
| 503 | } | 504 | } |
| 504 | }.show(supportFragmentManager, ProgressDialogFragment.TAG) | 505 | }.show(supportFragmentManager, ProgressDialogFragment.TAG) |