summaryrefslogtreecommitdiff
path: root/scene/resources/texture.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-02-06 17:03:11 +0100
committerGitHub <noreply@github.com>2022-02-06 17:03:11 +0100
commit79a4d782a5ef0801fb65ee8c8a488942044c8e10 (patch)
tree28da6865bd5f3e92dc0852ff60cafc74329857b7 /scene/resources/texture.cpp
parente38df41de8f20516ab8b2c91bedb4388cd9e41aa (diff)
parent1ce81dc5f2bd5db8bff0e60af846b994492810f9 (diff)
Merge pull request #57709 from jmb462/missing-sname-optimization
Diffstat (limited to 'scene/resources/texture.cpp')
-rw-r--r--scene/resources/texture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/texture.cpp b/scene/resources/texture.cpp
index ee66a61da8..0ee0e4b33e 100644
--- a/scene/resources/texture.cpp
+++ b/scene/resources/texture.cpp
@@ -1902,7 +1902,7 @@ void GradientTexture2D::_queue_update() {
return;
}
update_pending = true;
- call_deferred("_update");
+ call_deferred(SNAME("_update"));
}
void GradientTexture2D::_update() {