diff --git a/content/system/keyboard/keyboard.gd b/content/system/keyboard/keyboard.gd index 947e5f1..fd70e60 100644 --- a/content/system/keyboard/keyboard.gd +++ b/content/system/keyboard/keyboard.gd @@ -90,5 +90,4 @@ func _emit_event(type: String, key: Key): event.shift_pressed = caps EventSystem.emit(type, event) - print("Emitting event: " + type + " " + EventKey.key_to_string(key, caps)) diff --git a/content/ui/components/input/input.gd b/content/ui/components/input/input.gd index a543f8d..6dd76e6 100644 --- a/content/ui/components/input/input.gd +++ b/content/ui/components/input/input.gd @@ -116,7 +116,6 @@ func update_caret_position(event): func _on_focus_out(_event): - print("focus out") animation.stop() caret.hide() diff --git a/content/ui/components/notification/notification.gd b/content/ui/components/notification/notification.gd index 5b8e6b6..38ddd61 100644 --- a/content/ui/components/notification/notification.gd +++ b/content/ui/components/notification/notification.gd @@ -13,7 +13,6 @@ extends Node3D set(value): type = value if !is_node_ready(): await ready - print(value, " ", _type_to_string(value)) icon_label.text = _type_to_string(value) @export var text: String = "": set(value):