Fix TextWrapping causing undefined error.

Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
This commit is contained in:
Armored Dragon 2024-07-19 01:02:44 -05:00
parent dec7739a05
commit 33b71d6a56
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -789,7 +789,7 @@ Rectangle {
text: title
color: "white"
font.pointSize: 12
wrapMode: Text.noWrap
wrapMode: Text.NoWrap
elide: Text.ElideRight
}
Text {
@ -799,7 +799,7 @@ Rectangle {
text: url
color: "gray"
font.pointSize: 10
wrapMode: Text.noWrap
wrapMode: Text.NoWrap
elide: Text.ElideRight
}