Ignore the prefix and suffix in the SpinBox expression
This fixes a regression caused by
86a31e9e38
.
This commit is contained in:
parent
ca652bbc47
commit
68f0d21cc4
|
@ -53,7 +53,8 @@ void SpinBox::_text_entered(const String &p_string) {
|
||||||
|
|
||||||
Ref<Expression> expr;
|
Ref<Expression> expr;
|
||||||
expr.instance();
|
expr.instance();
|
||||||
Error err = expr->parse(p_string);
|
// Ignore the prefix and suffix in the expression
|
||||||
|
Error err = expr->parse(p_string.trim_prefix(prefix + " ").trim_suffix(" " + suffix));
|
||||||
if (err != OK) {
|
if (err != OK) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue