mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-31 10:44:49 +01:00 
			
		
		
		
	android: Prevent user from dismissing mod/cheat notice
Makes sure that a user can't miss this dialog by touching outside the window. They must press "OK" or "Close" to continue.
This commit is contained in:
		
							parent
							
								
									10ba318807
								
							
						
					
					
						commit
						f813dc78b2
					
				| @ -104,7 +104,10 @@ class AddonsFragment : Fragment() { | ||||
|                                 requireActivity(), | ||||
|                                 titleId = R.string.addon_notice, | ||||
|                                 descriptionId = R.string.addon_notice_description, | ||||
|                                 positiveAction = { addonViewModel.showModInstallPicker(true) } | ||||
|                                 dismissible = false, | ||||
|                                 positiveAction = { addonViewModel.showModInstallPicker(true) }, | ||||
|                                 negativeAction = {}, | ||||
|                                 negativeButtonTitleId = R.string.close | ||||
|                             ).show(parentFragmentManager, MessageDialogFragment.TAG) | ||||
|                             addonViewModel.showModNoticeDialog(false) | ||||
|                         } | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user