diff options
Diffstat (limited to 'src/grid/storage.rs')
-rw-r--r-- | src/grid/storage.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grid/storage.rs b/src/grid/storage.rs index a23f0f37..471afdae 100644 --- a/src/grid/storage.rs +++ b/src/grid/storage.rs @@ -32,7 +32,7 @@ pub struct Storage<T> { /// having to truncate the raw `inner` buffer. /// As long as `len` is bigger than `inner`, it is also possible to grow the scrollback buffer /// without any additional insertions. - #[serde(skip)] + #[serde(default)] len: usize, } |