summaryrefslogtreecommitdiff
path: root/metawatchwatchlets/ChatBubble.qml
diff options
context:
space:
mode:
authorJavier S. Pedro <maemo@javispedro.com>2013-05-13 01:34:28 +0200
committerJavier S. Pedro <maemo@javispedro.com>2013-05-13 01:34:28 +0200
commit31e3450a84df7c1c64617299180813c975fbb877 (patch)
tree14e6e6c165af2b5aa3310cc49241837a7ee1d4b8 /metawatchwatchlets/ChatBubble.qml
parent76544a015e0db637e1328ad66da9bef3c50f8217 (diff)
downloadsowatch-31e3450a84df7c1c64617299180813c975fbb877.tar.gz
sowatch-31e3450a84df7c1c64617299180813c975fbb877.zip
bump to 0.5 and random fixes
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 {