Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 311 Bytes

negativeDimensions.qml

File metadata and controls

19 lines (16 loc) · 311 Bytes
 
Jan 4, 2012
Jan 4, 2012
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick 2.0
Item {
TextInput {
objectName: "input"
focus: true
width: -1
height: -1
text: "sushi"
anchors {
left: parent.left;
leftMargin: 5
top: parent.top
topMargin: font.pixelSize
}
}
}