summaryrefslogtreecommitdiffstats
path: root/scene/gui
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
parent6758a7f8c07d1f4c8ec4f052ded6d26402967ebe (diff)
downloadredot-engine-545350369774ffb56d207f22102c0b9c58035192.tar.gz
[Text Server] Store extra spacing of individual font variations.
Diffstat (limited to 'scene/gui')
-rw-r--r--scene/gui/label.cpp3
-rw-r--r--scene/gui/line_edit.cpp3
-rw-r--r--scene/gui/rich_text_label.cpp3
3 files changed, 0 insertions, 9 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);
diff --git a/scene/gui/line_edit.cpp b/scene/gui/line_edit.cpp
index 956e93466c..bb727ff62c 100644
--- a/scene/gui/line_edit.cpp
+++ b/scene/gui/line_edit.cpp
@@ -2314,9 +2314,6 @@ void LineEdit::_shape() {
TS->shaped_text_set_preserve_control(text_rid, draw_control_chars);
TS->shaped_text_add_string(text_rid, t, font->get_rids(), font_size, font->get_opentype_features(), language);
- 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, t));
full_width = TS->shaped_text_get_size(text_rid).x;
diff --git a/scene/gui/rich_text_label.cpp b/scene/gui/rich_text_label.cpp
index 070c79c0ee..29b85e0d76 100644
--- a/scene/gui/rich_text_label.cpp
+++ b/scene/gui/rich_text_label.cpp
@@ -243,9 +243,6 @@ void RichTextLabel::_update_line_font(ItemFrame *p_frame, int p_line, const Ref<
font_size = font_size_it->font_size;
}
TS->shaped_set_span_update_font(t, i, font->get_rids(), font_size, font->get_opentype_features());
- for (int j = 0; j < TextServer::SPACING_MAX; j++) {
- TS->shaped_text_set_spacing(t, TextServer::SpacingType(j), font->get_spacing(TextServer::SpacingType(j)));
- }
}
}