Allow the area to be bigger than u16 (width and height remain u16) (#4318)

Now the editor can fill **very** large terminals.
Changed/removed tests which check the truncating behaviour.
This commit is contained in:
A-Walrus 2022-10-26 06:00:13 +03:00 committed by GitHub
parent ac0fe29867
commit c4d7cde6c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 54 deletions

View file

@ -4,12 +4,12 @@ use helix_tui::{
};
#[test]
fn terminal_buffer_size_should_be_limited() {
fn terminal_buffer_size_should_not_be_limited() {
let backend = TestBackend::new(400, 400);
let terminal = Terminal::new(backend).unwrap();
let size = terminal.backend().size().unwrap();
assert_eq!(size.width, 255);
assert_eq!(size.height, 255);
assert_eq!(size.width, 400);
assert_eq!(size.height, 400);
}
// #[test]