Merge branch 'master' into master-android

This commit is contained in:
Evgeny Poberezkin
2026-06-23 15:21:42 +01:00
8 changed files with 127 additions and 29 deletions
@@ -176,7 +176,7 @@ fun CIImageView(
.then(
if (!smallView) {
val w = if (previewBitmap.width * 0.97 <= previewBitmap.height) imageViewFullWidth() * 0.75f else DEFAULT_MAX_IMAGE_WIDTH
Modifier.width(w).aspectRatio((previewBitmap.width.toFloat() / previewBitmap.height.toFloat()).coerceAtLeast(1f / 2.33f))
Modifier.width(w).aspectRatio((previewBitmap.width.toFloat() / previewBitmap.height.toFloat()).coerceIn(1f / 2.33f, 2.33f))
} else Modifier
)
.desktopModifyBlurredState(!smallView, blurred, showMenu),