From b41a69781c086ed56ba7bd45c8e2a85ba0b552ce Mon Sep 17 00:00:00 2001 From: Oliver Date: Sat, 7 Feb 2026 20:55:05 -0700 Subject: [PATCH] merge cleanup --- src/app/logic/ctx.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/logic/ctx.rs b/src/app/logic/ctx.rs index 508521a..86033fe 100644 --- a/src/app/logic/ctx.rs +++ b/src/app/logic/ctx.rs @@ -20,7 +20,7 @@ impl<'a> CallbackContext<'a> { let mut buf = Vec::new(); for x in start..=end { - for y in 0..=self.variables.max_y_at_x(x) { + for y in 0..=self.variables.get_grid().max_y_at_x(x) { if let Some(s) = self.variables.get_cell_raw(x, y) { buf.push(s); }