Update plugins

This commit is contained in:
Adrien Ufferte
2026-03-09 09:17:36 +01:00
parent b517ab9897
commit b4f9fbe904
62 changed files with 237 additions and 236 deletions
@@ -2,10 +2,9 @@ extends PanelContainer
@onready var form_validator_control: FormValidator = $MarginContainer/FormValidator
func _on_form_validator_control_control_validated(control: Control, passed: bool, messages: PackedStringArray) -> void:
var error_label: Label = _get_error_label(control)
var valid_label: Label = _get_valid_label(control)
func _on_form_validator_control_control_validated(control, passed, messages) -> void:
var error_label = _get_error_label(control)
var valid_label = _get_valid_label(control)
if passed:
if error_label:
error_label.hide()