diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-01-05 02:55:10 +0300 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2020-01-04 23:55:10 +0000 |
commit | 5aaa350e1a79402244c3350b2cad9880c4e770e4 (patch) | |
tree | 7f11535ad614767f6a4c405772a3a65905d3d70c /alacritty_terminal/src/grid | |
parent | dc063180f31a4c94a2ad3e5e0c6535e39edcfa9a (diff) | |
download | alacritty-5aaa350e1a79402244c3350b2cad9880c4e770e4.tar.gz alacritty-5aaa350e1a79402244c3350b2cad9880c4e770e4.zip |
Update outdated reftests
Diffstat (limited to 'alacritty_terminal/src/grid')
-rw-r--r-- | alacritty_terminal/src/grid/mod.rs | 3 | ||||
-rw-r--r-- | alacritty_terminal/src/grid/storage.rs | 1 |
2 files changed, 0 insertions, 4 deletions
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<T> { /// 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<Selection>, - #[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<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(default)] len: usize, } |