project-panel: Fix playback GIF images (#21274)

This commit is contained in:
Gowtham K 2024-11-28 16:50:10 +05:30 committed by GitHub
parent cacec06db6
commit 6cba467a4e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -301,7 +301,8 @@ impl Render for ImageView {
img(image)
.object_fit(ObjectFit::ScaleDown)
.max_w_full()
.max_h_full(),
.max_h_full()
.id("img"),
),
)
}