From 25a9976a7ff54a5b53297e0e192b37552992685f Mon Sep 17 00:00:00 2001 From: armored-dragon Date: Tue, 18 Feb 2025 13:57:54 -0600 Subject: [PATCH] Fix links not wrapping. --- .../qml_widgets/TemplateChatMessage.qml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/scripts/system/domainChat/qml_widgets/TemplateChatMessage.qml b/scripts/system/domainChat/qml_widgets/TemplateChatMessage.qml index 124f1888c6..b97301ddf2 100644 --- a/scripts/system/domainChat/qml_widgets/TemplateChatMessage.qml +++ b/scripts/system/domainChat/qml_widgets/TemplateChatMessage.qml @@ -66,8 +66,9 @@ Component { } } - RowLayout { - width: urlTypeTextDisplay.width; + Flow { + width: parent.width * 0.8; + height: 20 visible: model.type === 'url'; TextEdit { @@ -77,10 +78,10 @@ Component { wrapMode: Text.Wrap; color: "#4EBAFD"; font.underline: true; - width: parent.width; readOnly: true selectByMouse: true selectByKeyboard: true + width: Math.min(parent.width - 20, textMetrics.tightBoundingRect.width) ; MouseArea { anchors.fill: parent; @@ -91,12 +92,20 @@ Component { } } + TextMetrics { + id: textMetrics + font: urlTypeTextDisplay.font + text: urlTypeTextDisplay.text + } + Text { + width: 20; text: "🗗"; font.pointSize: 10; - wrapMode: Text.Wrap; color: "white"; - + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + MouseArea { anchors.fill: parent;