Fixed typo
This commit is contained in:
parent
8a2f4f63af
commit
5076621ee3
@ -300,13 +300,13 @@ private fun StaticImage(tempImagePath: String) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
private fun AnimatedImage(iamgePath: String) {
|
private fun AnimatedImage(imagePath: String) {
|
||||||
Image(
|
Image(
|
||||||
bitmap = loadOrNull(iamgePath) { loadAnimatedImage(iamgePath) }?.animate() ?: ImageBitmap.Blank,
|
bitmap = loadOrNull(imagePath) { loadAnimatedImage(imagePath) }?.animate() ?: ImageBitmap.Blank,
|
||||||
contentDescription = null,
|
contentDescription = null,
|
||||||
modifier = Modifier.fillMaxSize()
|
modifier = Modifier.fillMaxSize()
|
||||||
.handMouseClickable {
|
.handMouseClickable {
|
||||||
openFileWithExternalApp(iamgePath)
|
openFileWithExternalApp(imagePath)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user