system settings
git clone https://git.lucas.co/cce-system-interface.git
Disable the title label on SystemInterface menubar
src/main.rs | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/main.rs b/src/main.rs
index fc30bd9..332f3da 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -408,8 +408,7 @@ impl cce_ui::engine::Application for SystemInterface {
let pages_names = Page::ALL.iter().map(|p| p.label().to_string()).collect::<Vec<_>>();
let mut menubar = cce_ui::widget::MenuBar::new(0.0, 0.0, 180.0, 680.0)
- .with_vertical(true)
- .with_title("SYSTEM");
+ .with_vertical(true);
menubar.set_pages(pages_names);
let sidebar_width = menubar.sidebar_w();