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