diff --git a/TODO.md b/TODO.md index 411acf1a..0c617cae 100644 --- a/TODO.md +++ b/TODO.md @@ -48,6 +48,10 @@ Note this will probably migrate to GitHub's native Issues; this was mostly for p * Test for Windows support, mac support, other. May be doable, depends on sysinfo and how much I know about other OSes probably. +* Seems like the braille symbols are borked on windows. + +* Issue with typing after windows version runs! + * Efficiency!!! * Filtering in processes (that is, allow searching) diff --git a/src/main.rs b/src/main.rs index caeb2c8c..0747fbd2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -96,9 +96,7 @@ fn main() -> error::Result<()> { let tx = tx.clone(); thread::spawn(move || { let input = input(); - if cfg!(target_os = "linux") { - input.enable_mouse_mode().unwrap(); - } + input.enable_mouse_mode().unwrap(); let reader = input.read_sync(); for event in reader { match event {