summaryrefslogtreecommitdiffstats
path: root/scene/gui/label.cpp
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2023-08-24 11:56:50 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2023-08-24 11:58:12 +0300
commit545350369774ffb56d207f22102c0b9c58035192 (patch)
tree0ede2d8d4c17d8ec652ae95fc585f5f9495a18ca /scene/gui/label.cpp
parent6758a7f8c07d1f4c8ec4f052ded6d26402967ebe (diff)
downloadredot-engine-545350369774ffb56d207f22102c0b9c58035192.tar.gz
[Text Server] Store extra spacing of individual font variations.
Diffstat (limited to 'scene/gui/label.cpp')
-rw-r--r--scene/gui/label.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/scene/gui/label.cpp b/scene/gui/label.cpp
index aec9722fec..cf0627c6f1 100644
--- a/scene/gui/label.cpp
+++ b/scene/gui/label.cpp
@@ -127,9 +127,6 @@ void Label::_shape() {
TS->shaped_set_span_update_font(text_rid, i, font->get_rids(), font_size, font->get_opentype_features());
}
}
- for (int i = 0; i < TextServer::SPACING_MAX; i++) {
- TS->shaped_text_set_spacing(text_rid, TextServer::SpacingType(i), font->get_spacing(TextServer::SpacingType(i)));
- }
TS->shaped_text_set_bidi_override(text_rid, structured_text_parser(st_parser, st_args, txt));
if (!tab_stops.is_empty()) {
TS->shaped_text_tab_align(text_rid, tab_stops);