mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-31 18:54:14 +01:00 
			
		
		
		
	android: Prevent crash when trying to change pages in setup fragment
Sometimes when we want to change the current setup page, the current view isn't available and we try to alter the current view. This adds a guard to prevent that issue.
This commit is contained in:
		
							parent
							
								
									d70f18b87b
								
							
						
					
					
						commit
						22284fc504
					
				| @ -355,11 +355,15 @@ class SetupFragment : Fragment() { | ||||
|     } | ||||
| 
 | ||||
|     fun pageForward() { | ||||
|         binding.viewPager2.currentItem = binding.viewPager2.currentItem + 1 | ||||
|         if (_binding != null) { | ||||
|             binding.viewPager2.currentItem += 1 | ||||
|         } | ||||
|     } | ||||
| 
 | ||||
|     fun pageBackward() { | ||||
|         binding.viewPager2.currentItem = binding.viewPager2.currentItem - 1 | ||||
|         if (_binding != null) { | ||||
|             binding.viewPager2.currentItem -= 1 | ||||
|         } | ||||
|     } | ||||
| 
 | ||||
|     fun setPageWarned(page: Int) { | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user