~ken-vandine/gwibber/autopilot

« back to all changes in this revision

Viewing changes to qml/Post.qml

  • Committer: Ken VanDine
  • Date: 2013-03-18 16:53:25 UTC
  • Revision ID: ken.vandine@canonical.com-20130318165325-dnzlxschd88lanxe
We don't need the hack to set visible when pushing onto the PageStack

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import Ubuntu.OnlineAccounts 0.1
21
21
import Friends 0.1
22
22
 
23
 
Rectangle {
 
23
Item {
24
24
    id: post
25
25
    width: parent.width
26
26
    anchors {
30
30
        right: parent.right
31
31
    }
32
32
 
33
 
    color: "#eeeeee"
34
 
 
35
33
    FriendsDispatcher {
36
34
        id: friends
37
35
        onSendComplete: {
47
45
         }
48
46
    }
49
47
 
50
 
 
 
48
/*
51
49
    Item {
52
50
        id: postHeader
53
51
        anchors {
122
120
            top: postHeader.bottom
123
121
        }
124
122
    }
 
123
    */
125
124
 
126
125
    Item {
127
126
        id: entry
128
127
        property var inputEntry: entryArea
129
128
        anchors {
130
 
            top: topLine.bottom
 
129
            top: parent.top
131
130
            left: parent.left
132
131
            right: parent.right
133
132
            topMargin: units.gu(1)