Fixed bug where spinbox would not update to it's actual value after non-numeric input

(cherry picked from commit e76e39d5f5)
This commit is contained in:
Eric M 2020-04-26 22:10:11 +10:00 committed by Rémi Verschelde
parent d94323e37b
commit e24b9f0520
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -62,8 +62,8 @@ void SpinBox::_text_entered(const String &p_string) {
Variant value = expr->execute(Array(), NULL, false);
if (value.get_type() != Variant::NIL) {
set_value(value);
_value_changed(0);
}
_value_changed(0);
}
LineEdit *SpinBox::get_line_edit() {