summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2009-11-26 14:51:36 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2009-11-26 14:51:36 (GMT)
commit7738d3b389200dc73f3e19c55359675f9c26a9a5 (patch)
treec7c81f21c09116ed31719cbc26df19e3996adc17 /demos
parent96363242c9a6edd00a5c4f585e93cfb4ba15a371 (diff)
downloadQt-7738d3b389200dc73f3e19c55359675f9c26a9a5.zip
Qt-7738d3b389200dc73f3e19c55359675f9c26a9a5.tar.gz
Qt-7738d3b389200dc73f3e19c55359675f9c26a9a5.tar.bz2
Fix minor clipping issue in twitter app
Diffstat (limited to 'demos')
-rw-r--r--demos/declarative/twitter/content/AuthView.qml2
-rw-r--r--demos/declarative/twitter/content/HomeTitleBar.qml3
2 files changed, 2 insertions, 3 deletions
diff --git a/demos/declarative/twitter/content/AuthView.qml b/demos/declarative/twitter/content/AuthView.qml
index ff360b9..bcf4646 100644
--- a/demos/declarative/twitter/content/AuthView.qml
+++ b/demos/declarative/twitter/content/AuthView.qml
@@ -19,7 +19,6 @@ Item {
TextInput{
id: nameIn
width: parent.width - 8
- height: parent.height - 12
anchors.centerIn: parent
maximumLength:21
font.pixelSize: 16;
@@ -44,7 +43,6 @@ Item {
TextInput{
id: passIn
width: parent.width - 8
- height: parent.height - 12
anchors.centerIn: parent
maximumLength:21
echoMode: TextInput.Password
diff --git a/demos/declarative/twitter/content/HomeTitleBar.qml b/demos/declarative/twitter/content/HomeTitleBar.qml
index 2cd1447..e5bdb85 100644
--- a/demos/declarative/twitter/content/HomeTitleBar.qml
+++ b/demos/declarative/twitter/content/HomeTitleBar.qml
@@ -25,6 +25,7 @@ Item {
}
}
postman.send(postData);
+
editor.text = ""
titleBar.state = ""
}
@@ -88,7 +89,7 @@ Item {
width: parent.width - 12
height: parent.height - 8
font.pointSize: 10
- wrap:true
+ wrap: true
color: "#151515"; selectionColor: "green"
}
Keys.forwardTo: [(returnKey), (editor)]