diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-09-07 11:59:51 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-09-07 11:59:51 +0300 |
commit | 1ced1f9c9981c923a4c6bf8d461028f8ffa622f6 (patch) | |
tree | 2d463fd98799d004e85f5832c3deee0c302143a2 /modules/text_server_adv | |
parent | 8449592d92eaeef990f5502b419d491ee3eeb7a6 (diff) | |
download | redot-engine-1ced1f9c9981c923a4c6bf8d461028f8ffa622f6.tar.gz |
[TextServer] Pass Dictionary properties by value and check property values instead of references..
Diffstat (limited to 'modules/text_server_adv')
-rw-r--r-- | modules/text_server_adv/text_server_adv.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/text_server_adv/text_server_adv.cpp b/modules/text_server_adv/text_server_adv.cpp index 85e98eac76..f2c1d4e007 100644 --- a/modules/text_server_adv/text_server_adv.cpp +++ b/modules/text_server_adv/text_server_adv.cpp @@ -2383,8 +2383,10 @@ void TextServerAdvanced::_font_set_variation_coordinates(const RID &p_font_rid, ERR_FAIL_COND(!fd); MutexLock lock(fd->mutex); - _font_clear_cache(fd); - fd->variation_coordinates = p_variation_coordinates; + if (!fd->variation_coordinates.recursive_equal(p_variation_coordinates, 1)) { + _font_clear_cache(fd); + fd->variation_coordinates = p_variation_coordinates.duplicate(); + } } Dictionary TextServerAdvanced::_font_get_variation_coordinates(const RID &p_font_rid) const { |