chore: remove eprintln logs
This commit is contained in:
parent
8edbbec1e8
commit
3f4a50ee2c
2 changed files with 0 additions and 4 deletions
|
|
@ -935,7 +935,6 @@ where
|
|||
}
|
||||
|
||||
if can_activate {
|
||||
eprintln!("can activate focus");
|
||||
shell.publish(on_activate(key));
|
||||
state.focused = true;
|
||||
state.focused_item = Item::Tab(key);
|
||||
|
|
@ -1735,13 +1734,11 @@ impl operation::Focusable for LocalState {
|
|||
}
|
||||
|
||||
fn focus(&mut self) {
|
||||
eprintln!("focus");
|
||||
self.focused = true;
|
||||
self.focused_item = Item::Set;
|
||||
}
|
||||
|
||||
fn unfocus(&mut self) {
|
||||
eprintln!("unfocus");
|
||||
self.focused = false;
|
||||
self.focused_item = Item::None;
|
||||
self.show_context = None;
|
||||
|
|
|
|||
|
|
@ -882,7 +882,6 @@ where
|
|||
if let Some(on_unfocus) = self.on_unfocus.as_ref() {
|
||||
if state.emit_unfocus {
|
||||
state.emit_unfocus = false;
|
||||
eprintln!("unfocus");
|
||||
shell.publish(on_unfocus.clone());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue