aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorJoe Wilm <joe@jwilm.com>2016-09-05 14:17:09 -0700
committerJoe Wilm <joe@jwilm.com>2016-09-05 14:17:23 -0700
commitb9f663f99e1b80dc5f21c31c8d82deb72e66c6aa (patch)
tree8f2db1640120f3c140b15d40fe65c75587336e90 /src/main.rs
parent3085b0b1376924c41184490a98eae21d884293d0 (diff)
downloadalacritty-b9f663f99e1b80dc5f21c31c8d82deb72e66c6aa.tar.gz
alacritty-b9f663f99e1b80dc5f21c31c8d82deb72e66c6aa.zip
Update deps and remove printlns
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
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();
}
}