git.lucas.co / cce-system-interface
system settings
git clone https://git.lucas.co/cce-system-interface.git

commit125521b2edd4158db03549f73581d333d5bcdce9
parentf9f64254b7
authorLucas Galante <[email protected]>
date2026-06-18 12:55
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();