From 1336a581a622e497e2bdbf46a3763cd7656fa033 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Sat, 13 Apr 2024 18:05:56 +0400 Subject: tile: Fix returned snapshot size --- src/layout/tile.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layout/tile.rs b/src/layout/tile.rs index 86082f74..8de478c0 100644 --- a/src/layout/tile.rs +++ b/src/layout/tile.rs @@ -706,7 +706,7 @@ impl Tile { snapshot.blocked_out_contents, ), block_out_from: snapshot.block_out_from, - size: snapshot.size, + size: self.animated_tile_size(), texture: Default::default(), blocked_out_texture: Default::default(), }) -- cgit