android: Show cancel option for delete addons dialog
This commit is contained in:
parent
86fc1e5b32
commit
10ba318807
1 changed files with 2 additions and 1 deletions
|
@ -119,7 +119,8 @@ class AddonsFragment : Fragment() {
|
|||
requireActivity(),
|
||||
titleId = R.string.confirm_uninstall,
|
||||
descriptionId = R.string.confirm_uninstall_description,
|
||||
positiveAction = { addonViewModel.onDeleteAddon(it) }
|
||||
positiveAction = { addonViewModel.onDeleteAddon(it) },
|
||||
negativeAction = {}
|
||||
).show(parentFragmentManager, MessageDialogFragment.TAG)
|
||||
addonViewModel.setAddonToDelete(null)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue