file manager
git clone https://git.lucas.co/cce-files.git
fix: use transparent clear_color to support rounded window corners
src/main.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main.rs b/src/main.rs
index 5037f10..50b1ed8 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -805,7 +805,7 @@ impl Application for FilesystemApp {
}
fn clear_color(&self) -> [f32; 4] {
- cce_ui::color::page_low_color()
+ [0.0, 0.0, 0.0, 0.0]
}
fn handle_pointer_move(&mut self, pos: LogicalPosition, needs_rebuild: &mut bool) {