fix: image shimmer bug

if the same image on two seperate columns unblur at the same time,
it caused them both to continually cycle between blurred and
unblurred

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-09-09 19:20:42 -04:00
parent 28634301b8
commit a5e7880e25

View File

@@ -89,7 +89,7 @@ impl TexturesCache {
entry.replace_entry_with(|_, v| {
let TextureStateInternal::Loading(textured) = v else {
return None;
return Some(v);
};
Some(TextureStateInternal::Loaded(textured))