mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
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:
parent
ac0fe29867
commit
c4d7cde6c8
3 changed files with 15 additions and 54 deletions
|
@ -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]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue