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

commit23019b30bbe54f35ece30db679417af0cc51c824
parent63bfbfb922
authorLucas Galante <[email protected]>
date2026-06-28 07:07
Remove manual background_color assignments on Backplate

 src/main.rs | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/main.rs b/src/main.rs
index bd4850a..af77cd7 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -135,8 +135,6 @@ impl FilesystemApp {
 
         // Update root window size, background color, opacity
         self.root_window.set_rect(0.0, 0.0, self.width as f32, self.height as f32);
-        let bg_color = cce_ui::color::page_low_color();
-        self.root_window.background_color = Some(bg_color);
 
         // Rebuild Element Focus Hierarchy
         self.root_window.clear_children(&mut self.ui_context);