From 5aaa350e1a79402244c3350b2cad9880c4e770e4 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Sun, 5 Jan 2020 02:55:10 +0300 Subject: Update outdated reftests --- alacritty_terminal/src/grid/mod.rs | 3 --- alacritty_terminal/src/grid/storage.rs | 1 - 2 files changed, 4 deletions(-) (limited to 'alacritty_terminal/src') diff --git a/alacritty_terminal/src/grid/mod.rs b/alacritty_terminal/src/grid/mod.rs index a12c9509..87de1d7a 100644 --- a/alacritty_terminal/src/grid/mod.rs +++ b/alacritty_terminal/src/grid/mod.rs @@ -122,18 +122,15 @@ pub struct Grid { /// If the displayed region isn't at the bottom of the screen, it stays /// stationary while more text is emitted. The scrolling implementation /// updates this offset accordingly. - #[serde(default)] display_offset: usize, /// An limit on how far back it's possible to scroll - #[serde(default)] scroll_limit: usize, /// Selected region #[serde(skip)] pub selection: Option, - #[serde(default)] max_scroll_limit: usize, } diff --git a/alacritty_terminal/src/grid/storage.rs b/alacritty_terminal/src/grid/storage.rs index f754acdc..5d9339d5 100644 --- a/alacritty_terminal/src/grid/storage.rs +++ b/alacritty_terminal/src/grid/storage.rs @@ -46,7 +46,6 @@ pub struct Storage { /// 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(default)] len: usize, } -- cgit