This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ› Fix Canvas#clear not re-adding a root layer

+2 -1
+2 -1
src/graphics/canvas.rs
··· 248 248 } 249 249 pub fn clear(&mut self) { 250 250 self.layers.clear(); 251 - self.remove_background() 251 + self.remove_background(); 252 + self.layers.push(Layer::new("root")); 252 253 } 253 254 254 255 pub fn resolution_to_size_even(&self, resolution: u32) -> (u32, u32) {