mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-10 20:57:24 +01:00
Fix close button tint in extension screen (#7154)
This commit is contained in:
parent
01e04e31bf
commit
f2a478288a
@ -351,7 +351,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…
Reference in New Issue
Block a user