Browse Source
Merge pull request #13065 from t895/cancel-button-fail
android: Show cancel button for the content install notice
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
1 deletions
-
src/android/app/src/main/java/org/yuzu/yuzu_emu/ui/main/MainActivity.kt
|
|
|
@ -498,7 +498,8 @@ class MainActivity : AppCompatActivity(), ThemeProvider { |
|
|
|
this@MainActivity, |
|
|
|
titleId = R.string.content_install_notice, |
|
|
|
descriptionId = R.string.content_install_notice_description, |
|
|
|
positiveAction = { homeViewModel.setContentToInstall(documents) } |
|
|
|
positiveAction = { homeViewModel.setContentToInstall(documents) }, |
|
|
|
negativeAction = {} |
|
|
|
) |
|
|
|
} |
|
|
|
}.show(supportFragmentManager, ProgressDialogFragment.TAG) |
|
|
|
|