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

commit6eee642f09ad0a5a36dad7d229e87a58286848af
parentceb65554e8
authorLucas Galante <[email protected]>
date2026-06-21 09:22
style: remove CLEAR label from menubar

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

diff --git a/src/main.rs b/src/main.rs
index 50b1ed8..fb6f50d 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -502,7 +502,6 @@ impl Application for FilesystemApp {
         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, 56.0, 0.0)
             .with_vertical(true);
-        menubar.set_sidebar_label(Some("CLEAR".to_string()));
         menubar.set_pages(pages_names);
 
         let fs_service = services::fs::FsService::new(sender.clone());