diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2022-12-09 09:21:28 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-09 09:21:28 +0300 |
commit | 6566dd3defa9f080dabb295740dc1dac06e3b8fb (patch) | |
tree | baf1879dac3a39fda83f80ffe465bfc61596e0a9 /Cargo.lock | |
parent | 79860622a7beb8bbff0602e56977be6018f3aa39 (diff) | |
download | alacritty-6566dd3defa9f080dabb295740dc1dac06e3b8fb.tar.gz alacritty-6566dd3defa9f080dabb295740dc1dac06e3b8fb.zip |
Fix damage computation on boundaries
Given that the Rect started to use signed integers saturating_sub
became irrelevant and no clamp to zero were performed. This commit
uses max instead to fix it.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -676,9 +676,9 @@ dependencies = [ [[package]] name = "glutin" -version = "0.30.2" +version = "0.30.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0282c380a3adb52ae095e5847cc575c6bf79d296dcbf333e00be4a3fca07235e" +checksum = "524d807cd49a0c56a53ef9a6738cd15e7c8c4e9d37a3b7fdb3c250c1cd5bf7a3" dependencies = [ "bitflags", "cfg_aliases", |