mirror of
				https://git.suyu.dev/suyu/suyu.git
				synced 2025-10-31 23:06:43 +08:00 
			
		
		
		
	android: Fix check for ok text in software keyboard
This commit is contained in:
		
							parent
							
								
									ca4be4283d
								
							
						
					
					
						commit
						c0aa5392b9
					
				| @ -63,7 +63,7 @@ class KeyboardDialogFragment : DialogFragment() { | |||||||
|         val headerText = |         val headerText = | ||||||
|             config.header_text!!.ifEmpty { resources.getString(R.string.software_keyboard) } |             config.header_text!!.ifEmpty { resources.getString(R.string.software_keyboard) } | ||||||
|         val okText = |         val okText = | ||||||
|             if (config.header_text!!.isEmpty()) resources.getString(android.R.string.ok) else config.ok_text!! |             config.ok_text!!.ifEmpty { resources.getString(android.R.string.ok) } | ||||||
| 
 | 
 | ||||||
|         return MaterialAlertDialogBuilder(requireContext()) |         return MaterialAlertDialogBuilder(requireContext()) | ||||||
|             .setTitle(headerText) |             .setTitle(headerText) | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user