mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-04 08:08:55 +01:00 
			
		
		
		
	Fix overflow in ChangeCategoryDialog (#7883)
This commit is contained in:
		@@ -6,6 +6,8 @@ import androidx.compose.foundation.layout.Row
 | 
			
		||||
import androidx.compose.foundation.layout.Spacer
 | 
			
		||||
import androidx.compose.foundation.layout.fillMaxWidth
 | 
			
		||||
import androidx.compose.foundation.layout.padding
 | 
			
		||||
import androidx.compose.foundation.rememberScrollState
 | 
			
		||||
import androidx.compose.foundation.verticalScroll
 | 
			
		||||
import androidx.compose.material3.AlertDialog
 | 
			
		||||
import androidx.compose.material3.Checkbox
 | 
			
		||||
import androidx.compose.material3.Text
 | 
			
		||||
@@ -85,7 +87,9 @@ fun ChangeCategoryDialog(
 | 
			
		||||
            Text(text = stringResource(R.string.action_move_category))
 | 
			
		||||
        },
 | 
			
		||||
        text = {
 | 
			
		||||
            Column {
 | 
			
		||||
            Column(
 | 
			
		||||
                modifier = Modifier.verticalScroll(rememberScrollState()),
 | 
			
		||||
            ) {
 | 
			
		||||
                selection.forEach { checkbox ->
 | 
			
		||||
                    val onChange: (CheckboxState<Category>) -> Unit = {
 | 
			
		||||
                        val index = selection.indexOf(it)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user