git.lucas.co / cce-designer
graphic design tool
git clone https://git.lucas.co/cce-designer.git

commite98de1f8afe25058b510450307562dedd110688c
parent3cc215c1d3
authorLucas Galante <[email protected]>
date2026-05-23 18:16
Fix typo in spreadsheet pane menubar title

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

diff --git a/src/main.rs b/src/main.rs
index 0ae0aed..209ab80 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1852,7 +1852,7 @@ fn geometry_to_spreadsheet_data(geom: &Geometry) -> (Vec<String>, Vec<Vec<String
         widgets.push(Box::new(NodePalette::new()));
         widgets.push(Box::new(Spreadsheet::new()));
         
-        let mut spreadsheet_menubar = MenuBar::new(0.0, 0.0, 0.0, MENUBAR_H).with_title("spreadsheed");
+        let mut spreadsheet_menubar = MenuBar::new(0.0, 0.0, 0.0, MENUBAR_H).with_title("Spreadsheet");
         spreadsheet_menubar.visible = false;
         widgets.push(Box::new(spreadsheet_menubar));