summaryrefslogtreecommitdiffstats
path: root/modules/text_server_adv
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2023-07-07 20:14:28 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2023-09-04 09:47:55 +0300
commit31a8a9b2e15e7173be7225a60e0ceac4ec22623b (patch)
treefb5be1167e25652ce1cf1986f0575130b049a709 /modules/text_server_adv
parentfa3428ff25bc577d2a3433090478a6d615567056 (diff)
downloadredot-engine-31a8a9b2e15e7173be7225a60e0ceac4ec22623b.tar.gz
[TextServer] Remove excessive Dictionary checks.
Diffstat (limited to 'modules/text_server_adv')
-rw-r--r--modules/text_server_adv/text_server_adv.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/text_server_adv/text_server_adv.cpp b/modules/text_server_adv/text_server_adv.cpp
index cbe48db494..85e98eac76 100644
--- a/modules/text_server_adv/text_server_adv.cpp
+++ b/modules/text_server_adv/text_server_adv.cpp
@@ -2383,10 +2383,8 @@ void TextServerAdvanced::_font_set_variation_coordinates(const RID &p_font_rid,
ERR_FAIL_COND(!fd);
MutexLock lock(fd->mutex);
- if (fd->variation_coordinates != p_variation_coordinates) {
- _font_clear_cache(fd);
- fd->variation_coordinates = p_variation_coordinates;
- }
+ _font_clear_cache(fd);
+ fd->variation_coordinates = p_variation_coordinates;
}
Dictionary TextServerAdvanced::_font_get_variation_coordinates(const RID &p_font_rid) const {