diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index b148d31f..f2ef90b2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -193,7 +193,6 @@ fn main() { // Maybe draw the terminal let terminal = terminal.lock_high(); if terminal.dirty { - println!("dirty!"); display.draw(terminal); } @@ -244,7 +243,6 @@ impl PtyReader { } } - println!("updated terminal"); proxy.wakeup_event_loop(); // Move any leftover bytes to front of buffer @@ -348,7 +346,6 @@ impl Display { // Unlock the terminal mutex drop(terminal); - println!("swap buffers"); self.window.swap_buffers().unwrap(); } } |