mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 14:27:57 +01:00 
			
		
		
		
	fix: grid size slider (#9542)
This commit is contained in:
		
				
					committed by
					
						 GitHub
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							e3b2720924
						
					
				
				
					commit
					9c07451d95
				
			| @@ -220,7 +220,9 @@ private fun ColumnScope.DisplayPage( | ||||
|             } | ||||
|  | ||||
|             val columns by columnPreference.changes().collectAsState(initial = 0) | ||||
|             Column { | ||||
|             Column( | ||||
|                 Modifier.weight(.5f), | ||||
|             ) { | ||||
|                 Text( | ||||
|                     stringResource(id = R.string.pref_library_columns), | ||||
|                     style = MaterialTheme.typography.bodyMedium, | ||||
| @@ -235,7 +237,7 @@ private fun ColumnScope.DisplayPage( | ||||
|             Slider( | ||||
|                 value = columns.toFloat(), | ||||
|                 onValueChange = { columnPreference.set(it.toInt()) }, | ||||
|                 modifier = Modifier.weight(1f), | ||||
|                 modifier = Modifier.weight(1.5f), | ||||
|                 valueRange = 0f..10f, | ||||
|                 steps = 10, | ||||
|             ) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user