git.lucas.co / cce-files
file manager
git clone https://git.lucas.co/cce-files.git

commitceb65554e8773c0f6b7b830481dde05318b164e8
parent073fd5dbeb
authorLucas Galante <[email protected]>
date2026-06-21 09:20
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) {