blob: f605cf58f1daf76034a6185f497163c8258473dc [file] [log] [blame]
import QtQuick 2.0
Item {
width: 100
height: 30
Text {
width: parent ? parent.width : 0
height: parent ? parent.height : 0
elide: Text.ElideRight
text: "wot"
}
}