This commit is contained in:
2025-11-17 13:42:17 -07:00
parent d5ccb9b8c6
commit 712d75b256

View File

@@ -125,7 +125,10 @@ impl Widget for &App {
Some(cell) => { Some(cell) => {
match cell { match cell {
CellType::Number(c) => display = c.to_string(), 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) => { CellType::Equation(e) => {
match self.grid.evaluate(e) { match self.grid.evaluate(e) {
Ok(val) => { Ok(val) => {