1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-05 17:15:09 +00:00

Merge pull request #91177 from markusstephanides/master

Add no-change check to `Label3D::set_text`
This commit is contained in:
Rémi Verschelde
2024-04-29 10:09:49 +02:00

View File

@@ -636,6 +636,10 @@ void Label3D::_shape() {
} }
void Label3D::set_text(const String &p_string) { void Label3D::set_text(const String &p_string) {
if (text == p_string) {
return;
}
text = p_string; text = p_string;
xl_text = atr(p_string); xl_text = atr(p_string);
dirty_text = true; dirty_text = true;