Skip to content

Commit

Permalink
rm callable-related prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamby777 committed May 12, 2024
1 parent 15cc8e2 commit 9dca49f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions pets-lib/src/dialogue/dbox/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -447,11 +447,9 @@ impl DialogBox {
for (i, choice) in choices.iter().enumerate() {
let mut dchoice = DChoice::new_container(i, &choice.text);

godot_print!("binding callables for {}", dchoice.get_name());
self.choice_agent
.bind_mut()
.bind_callables_for(&mut dchoice);
godot_print!("bound callables for {}", dchoice.get_name());

cont.add_child(dchoice.clone().upcast());
}
Expand Down
5 changes: 0 additions & 5 deletions pets-lib/src/util/choices.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,6 @@ impl ChoiceAgent {
{
let choice = choice.upcast_mut::<Control>();

godot_print!(
"unbind: removing old callables found on {}",
choice.get_name()
);

let mut unbind = |signal_name: &str| {
choice
.get_signal_connection_list(signal_name.into())
Expand Down

0 comments on commit 9dca49f

Please sign in to comment.