Details
-
Bug
-
Resolution: Fixed
-
P1: Critical
-
Qt for MCUs 2.8.1
-
Consumer team Sprint 2024/3.1, Consumer team Sprint 2024/3.2
Description
Unlike QTMCU-333 with manual line breaking, removing the manual line breaks makes the elision not work:
import QtQuick 2.15 Rectangle { color: "#41CD52" width: 800 height: 480 Rectangle { anchors.fill: text color: "gold" } Text { id: text text: "Text TestTestTest TestTestTest" horizontalAlignment: Text.AlignHCenter width: 80 height: 100 elide: Text.ElideRight wrapMode: Text.Wrap } }