diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-08 09:11:23 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-08 09:11:23 +0200 |
commit | 31a7fd1951f6e9f68faa6edd2aaff87cb922a31c (patch) | |
tree | 26d8dc6f39322b9496ce290d3f906d8dabcf293c /modules/text_server_adv | |
parent | 119f379a3d6993612e018f2f8224f7a7a7daf49d (diff) | |
parent | 1ced1f9c9981c923a4c6bf8d461028f8ffa622f6 (diff) | |
download | redot-engine-31a7fd1951f6e9f68faa6edd2aaff87cb922a31c.tar.gz |
Merge pull request #81406 from bruvzg/ts_dict_chk2
[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 3850fc4518..3cbc300946 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 { |