summaryrefslogtreecommitdiff
path: root/alacritty_terminal/src/grid/mod.rs
diff options
context:
space:
mode:
authorKirill Chibisov <contact@kchibisov.com>2020-01-05 02:55:10 +0300
committerChristian Duerr <contact@christianduerr.com>2020-01-04 23:55:10 +0000
commit5aaa350e1a79402244c3350b2cad9880c4e770e4 (patch)
tree7f11535ad614767f6a4c405772a3a65905d3d70c /alacritty_terminal/src/grid/mod.rs
parentdc063180f31a4c94a2ad3e5e0c6535e39edcfa9a (diff)
downloadalacritty-5aaa350e1a79402244c3350b2cad9880c4e770e4.tar.gz
alacritty-5aaa350e1a79402244c3350b2cad9880c4e770e4.zip
Update outdated reftests
Diffstat (limited to 'alacritty_terminal/src/grid/mod.rs')
-rw-r--r--alacritty_terminal/src/grid/mod.rs3
1 files changed, 0 insertions, 3 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,
}