mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-23 17:35:00 +00:00
Remove debug println
This commit is contained in:
parent
ba26ab965b
commit
4dcb2ea901
@ -79,7 +79,6 @@ impl Backend for NcursesBackend {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn print_at((x, y): (usize, usize), text: &str) {
|
fn print_at((x, y): (usize, usize), text: &str) {
|
||||||
println!("{} {}", x, y);
|
|
||||||
ncurses::mvaddstr(y as i32, x as i32, text);
|
ncurses::mvaddstr(y as i32, x as i32, text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,7 +22,6 @@ impl<T: View + Any> ViewWrapper for IdView<T> {
|
|||||||
wrap_impl!(&self.view);
|
wrap_impl!(&self.view);
|
||||||
|
|
||||||
fn wrap_find(&mut self, selector: &Selector) -> Option<&mut Any> {
|
fn wrap_find(&mut self, selector: &Selector) -> Option<&mut Any> {
|
||||||
println!(" ID VIEWING ");
|
|
||||||
match selector {
|
match selector {
|
||||||
&Selector::Id(id) if id == self.id => Some(&mut self.view),
|
&Selector::Id(id) if id == self.id => Some(&mut self.view),
|
||||||
s => self.view.find(s),
|
s => self.view.find(s),
|
||||||
|
Loading…
Reference in New Issue
Block a user