From c0e36bedd6d303c71b59df75cc7a459046210a22 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 3 Sep 2022 21:26:49 -0700 Subject: [PATCH] remove dirty for now --- src/terminal/Screen.zig | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/terminal/Screen.zig b/src/terminal/Screen.zig index 6bb8d2586..f5155d31c 100644 --- a/src/terminal/Screen.zig +++ b/src/terminal/Screen.zig @@ -83,9 +83,6 @@ pub const RowHeader = struct { /// Used internally to track if this row has been initialized. init: bool = false, - /// True if one of the cells in this row has been changed - dirty: bool = false, - /// If true, this row is soft-wrapped. The first cell of the next /// row is a continuous of this row. wrap: bool = false,