Update plugins
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user