Fix close button tint in extension screen (#7154)
(cherry picked from commit f2a478288ac884ee9229fb17174d1e5db7249437)
This commit is contained in:
parent
530f91d774
commit
d8203499e2
@ -386,7 +386,11 @@ fun ExtensionItemActions(
|
|||||||
}
|
}
|
||||||
if (isIdle.not()) {
|
if (isIdle.not()) {
|
||||||
IconButton(onClick = { onClickItemCancel(extension) }) {
|
IconButton(onClick = { onClickItemCancel(extension) }) {
|
||||||
Icon(Icons.Default.Close, "")
|
Icon(
|
||||||
|
imageVector = Icons.Default.Close,
|
||||||
|
contentDescription = "",
|
||||||
|
tint = MaterialTheme.colorScheme.onBackground,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user