Correctly highliting a notification when dragged

This commit is contained in:
Vitor Pamplona
2023-11-06 20:13:00 -05:00
parent 885aded701
commit 47e124c7fc
@@ -111,12 +111,8 @@ fun MultiSetCompose(multiSetCard: MultiSetCard, routeForLastRead: String, showHi
val columnModifier = remember(backgroundColor.value) { val columnModifier = remember(backgroundColor.value) {
Modifier Modifier
.fillMaxWidth()
.background(backgroundColor.value) .background(backgroundColor.value)
.padding(
start = 12.dp,
end = 12.dp,
top = 10.dp
)
.combinedClickable( .combinedClickable(
onClick = { onClick = {
scope.launch { scope.launch {
@@ -125,7 +121,11 @@ fun MultiSetCompose(multiSetCard: MultiSetCard, routeForLastRead: String, showHi
}, },
onLongClick = enablePopup onLongClick = enablePopup
) )
.fillMaxWidth() .padding(
start = 12.dp,
end = 12.dp,
top = 10.dp
)
} }
Column(modifier = columnModifier) { Column(modifier = columnModifier) {