[Development] Text clipping in QtQuick 2.0

Todd.Rose at nokia.com Todd.Rose at nokia.com
Tue Jan 17 06:33:30 CET 2012


Text elements with wrapMode: Text.NoWrap are being clipped when the text painted width exceeds the element width.   Seems like a big regression from QtQuick1.x...is this a known issue?  Bug? Feature?

Simple example:

TextBug.qml


import QtQuick 2.0

Rectangle {

    width: 360

    height: 360

    Rectangle {

        id: leftRect

        anchors.left: parent.left

        anchors.top: parent.top

        anchors.bottom: parent.bottom

        width: 60

        color: "red"

    }

    Rectangle {

        id: rightRect

        anchors.right: parent.right

        anchors.top: parent.top

        anchors.bottom: parent.bottom

        width: 60

        color: "red"

    }

    Text {

        id: bugText

        anchors.left: leftRect.right

        anchors.right: rightRect.left

        anchors.verticalCenter: parent.verticalCenter

        wrapMode: Text.NoWrap

        font.pointSize: 16

        clip: true

        text: "Hello World! Hello World! Hello World! Hello World! Hello World! Hello World! Hello World! Hello World! Hello World! Hello World!"

    }

    MouseArea {

        anchors.fill: parent

        onClicked: {

            if (bugText.wrapMode == Text.NoWrap)

                bugText.wrapMode = Text.WordWrap

            else

                bugText.wrapMode = Text.NoWrap

        }

    }

}

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.qt-project.org/pipermail/development/attachments/20120117/bd570af9/attachment.html>


More information about the Development mailing list