mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 08:31:21 +00:00
Fixed bug where spinbox would not update to it's actual value after non-numeric input
This commit is contained in:
parent
7899b3e734
commit
e76e39d5f5
1 changed files with 1 additions and 1 deletions
|
|
@ -63,8 +63,8 @@ void SpinBox::_text_entered(const String &p_string) {
|
||||||
Variant value = expr->execute(Array(), nullptr, false);
|
Variant value = expr->execute(Array(), nullptr, false);
|
||||||
if (value.get_type() != Variant::NIL) {
|
if (value.get_type() != Variant::NIL) {
|
||||||
set_value(value);
|
set_value(value);
|
||||||
_value_changed(0);
|
|
||||||
}
|
}
|
||||||
|
_value_changed(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
LineEdit *SpinBox::get_line_edit() {
|
LineEdit *SpinBox::get_line_edit() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue