summaryrefslogtreecommitdiff
path: root/navit/gui/qt5_qml/skins/pois.qml
diff options
context:
space:
mode:
authorJoseph Herlant <herlantj@gmail.com>2018-05-25 22:07:07 -0700
committerJoseph Herlant <aerostitch@users.noreply.github.com>2018-05-25 22:17:50 -0700
commit41a1264cdd43a11695de85eab0bd3c941abf2b70 (patch)
tree3da1ef3bebc674807258ae824ff9156a64adf370 /navit/gui/qt5_qml/skins/pois.qml
parent8a76acb966f7059caf9d72c853175bd923b1e9d7 (diff)
downloadnavit-41a1264cdd43a11695de85eab0bd3c941abf2b70.tar.gz
cleanup:cmake:remove trailing spaces
Diffstat (limited to 'navit/gui/qt5_qml/skins/pois.qml')
-rw-r--r--navit/gui/qt5_qml/skins/pois.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/navit/gui/qt5_qml/skins/pois.qml b/navit/gui/qt5_qml/skins/pois.qml
index bc083e1ed..a78260211 100644
--- a/navit/gui/qt5_qml/skins/pois.qml
+++ b/navit/gui/qt5_qml/skins/pois.qml
@@ -10,14 +10,14 @@ Item {
color: "#ff0000"
radius: 2
border.width: 1
-
+
Image {
id: image1
height: parent.height - 4;
source : model.modelData.active ? "icons/appbar.layer.svg" : "icons/appbar.layer.delete.svg"
opacity: model.modelData.active ? 1 : 0.4
}
-
+
Text {
width: 128
id: distanceText
@@ -27,7 +27,7 @@ Item {
anchors.left: image1.right
anchors.leftMargin: 8
}
-
+
Text {
text: name
color: "#ffffff"
@@ -35,7 +35,7 @@ Item {
anchors.left: distanceText.right
anchors.leftMargin: 8
}
-
+
MouseArea{
anchors.fill: parent
hoverEnabled: true
@@ -44,7 +44,7 @@ Item {
}
}
}
-
+
Component.onCompleted: backend.get_pois()
}