diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2013-06-15 21:31:06 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2013-06-15 21:31:06 +0200 |
commit | 6d64f7d6330a42dd57cafcb869dfab34c75ed3bc (patch) | |
tree | ff596f6f65a3b1dedc8d2a73c30ce6dbc83dcf91 /qmapwatchlet/compass-liveview.qml | |
parent | 378611f629abc146eaf0b13301f119d826edb86b (diff) | |
download | sowatch-6d64f7d6330a42dd57cafcb869dfab34c75ed3bc.tar.gz sowatch-6d64f7d6330a42dd57cafcb869dfab34c75ed3bc.zip |
add new icons for liveview watchlets
Diffstat (limited to 'qmapwatchlet/compass-liveview.qml')
-rw-r--r-- | qmapwatchlet/compass-liveview.qml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/qmapwatchlet/compass-liveview.qml b/qmapwatchlet/compass-liveview.qml new file mode 100644 index 0000000..60a6aa6 --- /dev/null +++ b/qmapwatchlet/compass-liveview.qml @@ -0,0 +1,15 @@ +import QtQuick 1.0 +import com.javispedro.sowatch.qmap 1.0 + +Rectangle { + color: "black" + + CompassView { + anchors.centerIn: parent + id: compass + updateEnabled: watch.active + updateInterval: 3000 + width: 36 + height: 36 + } +} |