system settings
git clone https://git.lucas.co/cce-system-interface.git
Fix blue window background by returning transparent clear_color from SystemInterface
src/main.rs | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/src/main.rs b/src/main.rs
index b6f68ce..fa863ba 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -604,12 +604,7 @@ impl cce_ui::engine::Application for SystemInterface {
}
fn clear_color(&self) -> [f32; 4] {
- [
- self.app.interface.high_color[0] as f32 / 255.0,
- self.app.interface.high_color[1] as f32 / 255.0,
- self.app.interface.high_color[2] as f32 / 255.0,
- self.app.layout.side_panel_border_opacity as f32 / 100.0,
- ]
+ [0.0, 0.0, 0.0, 0.0]
}
fn handle_pointer_move(&mut self, pos: cce_ui::engine::LogicalPosition, needs_rebuild: &mut bool) {