summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2023-10-31 09:34:43 +0200
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2023-10-31 22:39:42 +0200
commit9ad55dc32df2ae06eface1a4ebb5a37478600134 (patch)
tree297fbb8aa54fd05f88208640b3f5113536f6839a
parent6afd320984cf14198368cc6c53752813a02169e3 (diff)
downloadredot-engine-9ad55dc32df2ae06eface1a4ebb5a37478600134.tar.gz
[TextServer] Fix line breaks for dropcap and resizing embedded objects.
-rw-r--r--modules/text_server_adv/text_server_adv.cpp2
-rw-r--r--scene/gui/rich_text_label.cpp2
-rw-r--r--scene/resources/text_paragraph.cpp11
3 files changed, 8 insertions, 7 deletions
diff --git a/modules/text_server_adv/text_server_adv.cpp b/modules/text_server_adv/text_server_adv.cpp
index 8987a491cb..eaab04b49a 100644
--- a/modules/text_server_adv/text_server_adv.cpp
+++ b/modules/text_server_adv/text_server_adv.cpp
@@ -4312,6 +4312,8 @@ bool TextServerAdvanced::_shaped_text_resize_object(const RID &p_shaped, const V
sd->width += gl.advance * gl.repeat;
}
}
+ sd->sort_valid = false;
+ sd->glyphs_logical.clear();
_realign(sd);
}
return true;
diff --git a/scene/gui/rich_text_label.cpp b/scene/gui/rich_text_label.cpp
index 1e2f010aad..31ed5984a4 100644
--- a/scene/gui/rich_text_label.cpp
+++ b/scene/gui/rich_text_label.cpp
@@ -307,7 +307,7 @@ float RichTextLabel::_resize_line(ItemFrame *p_frame, int p_line, const Ref<Font
Size2 img_size = img->size;
if (img->size_in_percent) {
img_size = _get_image_size(img->image, p_width * img->rq_size.width / 100.f, p_width * img->rq_size.height / 100.f, img->region);
- l.text_buf->resize_object((uint64_t)it, img_size, img->inline_align, 1);
+ l.text_buf->resize_object((uint64_t)it, img_size, img->inline_align);
}
} break;
case ITEM_TABLE: {
diff --git a/scene/resources/text_paragraph.cpp b/scene/resources/text_paragraph.cpp
index 239ecb500e..147c9044b8 100644
--- a/scene/resources/text_paragraph.cpp
+++ b/scene/resources/text_paragraph.cpp
@@ -175,17 +175,16 @@ void TextParagraph::_shape_lines() {
for (int i = 0; i < line_breaks.size(); i = i + 2) {
RID line = TS->shaped_text_substr(rid, line_breaks[i], line_breaks[i + 1] - line_breaks[i]);
float h = (TS->shaped_text_get_orientation(line) == TextServer::ORIENTATION_HORIZONTAL) ? TS->shaped_text_get_size(line).y : TS->shaped_text_get_size(line).x;
- if (v_offset < h) {
- TS->free_rid(line);
- break;
- }
if (!tab_stops.is_empty()) {
TS->shaped_text_tab_align(line, tab_stops);
}
- dropcap_lines++;
- v_offset -= h;
start = line_breaks[i + 1];
lines_rid.push_back(line);
+ if (v_offset < h) {
+ break;
+ }
+ dropcap_lines++;
+ v_offset -= h;
}
}
// Use fixed for the rest of lines.