From fae5bdb75c7cfd6d84f066df87d412400230736e Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 10 Dec 2021 04:37:53 -0500 Subject: actually, i think this will be confusing to do unconditionally it doesn't actually send distinguishable escape codes, it just sends the same escape codes as the up and down arrows, which might be doing something else and be confusing to map to the scroll wheel --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 281d19b..6c515c6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -85,8 +85,8 @@ mod input; #[cfg(feature = "async")] pub use input::{Input, RawGuard}; -const INIT: &[u8] = b"\x1b7\x1b[?1007h\x1b[?47h\x1b[2J\x1b[H\x1b[?25h"; -const DEINIT: &[u8] = b"\x1b[?47l\x1b[?1007l\x1b8\x1b[?25h"; +const INIT: &[u8] = b"\x1b7\x1b[?47h\x1b[2J\x1b[H\x1b[?25h"; +const DEINIT: &[u8] = b"\x1b[?47l\x1b8\x1b[?25h"; /// Provides the methods used to manipulate the in-memory screen. pub trait Textmode: private::Output { -- cgit v1.2.3-54-g00ecf