Can Add & Modify Marker on editing partition TUODetailDialog

This commit is contained in:
Hasinjato 2026-05-20 12:08:48 +03:00
parent 80ef86527b
commit 0bd92b6143

View file

@ -131,19 +131,19 @@ fun TUODetailDialog(
onValueChng = { marker = it } onValueChng = { marker = it }
) )
} }
} else { } else {
IconButton( IconButton(
modifier = Modifier.size(30.dp), modifier = Modifier.size(30.dp),
onClick = { onClick = {
canAddMark.value = true canAddMark.value = true
}) { }) {
Icon( Icon(
imageVector = Icons.Default.Add, imageVector = Icons.Default.Add,
tint = Color.Green, tint = Color.Green,
contentDescription = null contentDescription = null
) )
}
} }
}
} }
Spacer(modifier = Modifier.height(8.dp)) Spacer(modifier = Modifier.height(8.dp))