Fix close button tint in extension screen (#7154)

This commit is contained in:
CVIUS 2022-05-17 20:09:11 +08:00 committed by GitHub
parent 01e04e31bf
commit f2a478288a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -351,7 +351,11 @@ fun ExtensionItemActions(
}
if (isIdle.not()) {
IconButton(onClick = { onClickItemCancel(extension) }) {
Icon(Icons.Default.Close, "")
Icon(
imageVector = Icons.Default.Close,
contentDescription = "",
tint = MaterialTheme.colorScheme.onBackground,
)
}
}
}