From 712d75b256bd2bd8f4f5f8fc54e6f5b236c8bd4f Mon Sep 17 00:00:00 2001 From: Rushmore75 Date: Mon, 17 Nov 2025 13:42:17 -0700 Subject: [PATCH] close #45 --- src/app/app.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/app.rs b/src/app/app.rs index 6a9e8b2..92b0d8b 100644 --- a/src/app/app.rs +++ b/src/app/app.rs @@ -125,7 +125,10 @@ impl Widget for &App { Some(cell) => { match cell { CellType::Number(c) => display = c.to_string(), - CellType::String(s) => display = s.to_owned(), + CellType::String(s) => { + display = s.to_owned(); + style = Style::new().fg(Color::LightMagenta) + } CellType::Equation(e) => { match self.grid.evaluate(e) { Ok(val) => {