summaryrefslogtreecommitdiff
path: root/metawatchwatchlets/ChatBubble.qml
diff options
context:
space:
mode:
Diffstat (limited to 'metawatchwatchlets/ChatBubble.qml')
-rw-r--r--metawatchwatchlets/ChatBubble.qml7
1 files changed, 4 insertions, 3 deletions
diff --git a/metawatchwatchlets/ChatBubble.qml b/metawatchwatchlets/ChatBubble.qml
index ba69e64..1076afd 100644
--- a/metawatchwatchlets/ChatBubble.qml
+++ b/metawatchwatchlets/ChatBubble.qml
@@ -2,11 +2,12 @@ import QtQuick 1.0
Item {
id: container
- height: bubble.height + 4
+ height: tip.height + bubble.height
default property alias children: childContainer.children
Image {
+ id: tip
anchors {
top: parent.top; left: parent.left;
leftMargin: 18;
@@ -19,9 +20,9 @@ Item {
id: bubble
anchors {
top: parent.top; left: parent.left; right: parent.right;
- topMargin: 8;
+ topMargin: 9;
}
- border { left: 16; top: 16; right: 16; bottom: 16; }
+ border { left: 14; top: 14; right: 14; bottom: 14; }
height: childContainer.height + 16
source: "bubble.png"
Item {