add todo for reflow

This commit is contained in:
Mitchell Hashimoto
2022-05-22 14:48:07 -07:00
parent 90f3e36e13
commit b9c93b9017

View File

@ -90,6 +90,7 @@ pub fn resize(self: *Terminal, alloc: Allocator, cols: usize, rows: usize) !void
} }
// If we're making the screen smaller, dealloc the unused items. // If we're making the screen smaller, dealloc the unused items.
// TODO: reflow
try self.screen.resize(alloc, rows, cols); try self.screen.resize(alloc, rows, cols);
// Set our size // Set our size