diff --git a/daemon/src/wallpaper.rs b/daemon/src/wallpaper.rs index 75f2c973..0411f543 100644 --- a/daemon/src/wallpaper.rs +++ b/daemon/src/wallpaper.rs @@ -252,13 +252,7 @@ impl Wallpaper { use wl_output::transform; let inner = &mut self.inner; let staging = &self.inner_staging; - - if (inner.name != staging.name && use_cache) - || (self.img.is_set() - && (inner.scale_factor != staging.scale_factor - || inner.width != staging.width - || inner.height != staging.height)) - { + if inner.name != staging.name && use_cache { let name = staging.name.clone().unwrap_or("".to_string()); std::thread::Builder::new() .name("cache loader".to_string())