1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Ignore the prefix and suffix in the SpinBox expression

This fixes a regression caused by
86a31e9e38.
This commit is contained in:
Hugo Locurcio
2019-08-30 14:28:32 +02:00
parent ca652bbc47
commit 68f0d21cc4

View File

@@ -53,7 +53,8 @@ void SpinBox::_text_entered(const String &p_string) {
Ref<Expression> expr;
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) {
return;
}