chore: remove eprintln logs

This commit is contained in:
Michael Aaron Murphy 2025-06-11 11:49:32 +02:00
parent 8edbbec1e8
commit 3f4a50ee2c
No known key found for this signature in database
GPG key ID: B2732D4240C9212C
2 changed files with 0 additions and 4 deletions

View file

@ -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;

View file

@ -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());
}
}