summaryrefslogtreecommitdiff
path: root/qmapwatchlet/compass-liveview.qml
blob: 60a6aa6092b1ce99dcb209aa772efb254b4fe638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
	}
}