Reduce nesting in Rectangle::offset

This commit is contained in:
Héctor Ramón Jiménez 2025-04-26 04:50:59 +02:00
parent 00e4de88bf
commit 61b96caf21
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
2 changed files with 19 additions and 20 deletions

View file

@ -211,8 +211,7 @@ fn card<'a>(
.opacity(thumbnail.fade_in.interpolate(0.0, 1.0, now))
.scale(thumbnail.zoom.interpolate(1.0, 1.1, now))
.translate(move |bounds, viewport| {
let final_bounds = bounds.zoom(1.1);
final_bounds.offset(&viewport.shrink(10))
bounds.zoom(1.1).offset(&viewport.shrink(10))
* thumbnail.zoom.interpolate(0.0, 1.0, now)
})
.style(move |_theme| image::Style {