diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2022-05-20 22:23:55 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-20 22:23:55 +0300 |
commit | 9f8c5c4f5659308ee1bb3a22e7d0ca2d04db8874 (patch) | |
tree | 3190d3fe789698f7f6b1f96a87e3ac077b50edf9 /alacritty_terminal/src/grid/storage.rs | |
parent | e319ca93a6574fbdeee3f764c4390917f558e3a7 (diff) | |
download | alacritty-9f8c5c4f5659308ee1bb3a22e7d0ca2d04db8874.tar.gz alacritty-9f8c5c4f5659308ee1bb3a22e7d0ca2d04db8874.zip |
Enable damage tracking only on Wayland
Other platforms don't have such concepts in general or have them
via different interfaces not related to EGL.
This commit also resolves some minor clippy issues.
Fixes #6051.
Co-authored-by: Christian Duerr <contact@christianduerr.com>
Diffstat (limited to 'alacritty_terminal/src/grid/storage.rs')
-rw-r--r-- | alacritty_terminal/src/grid/storage.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty_terminal/src/grid/storage.rs b/alacritty_terminal/src/grid/storage.rs index 0b36fef6..6fbc3bf2 100644 --- a/alacritty_terminal/src/grid/storage.rs +++ b/alacritty_terminal/src/grid/storage.rs @@ -175,7 +175,7 @@ impl<T> Storage<T> { /// Rotate the grid, moving all lines up/down in history. #[inline] pub fn rotate(&mut self, count: isize) { - debug_assert!(count.abs() as usize <= self.inner.len()); + debug_assert!(count.unsigned_abs() <= self.inner.len()); let len = self.inner.len(); self.zero = (self.zero as isize + count + len as isize) as usize % len; |