summaryrefslogtreecommitdiffstats
path: root/app/BtnMapDirection.qml
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2019-12-31 16:10:49 +0800
committerMatt Ranostay <matt.ranostay@konsulko.com>2019-12-31 01:51:09 -0800
commitbc3f00d2fe42a82844a7a323cbf681b1ce706065 (patch)
treed2ea79d3ed7203588a279dd1c79524b5bab6a4a5 /app/BtnMapDirection.qml
parent483f573720a4e0a3db8f41af37acb8e137421192 (diff)
images: rename files from .svg.png to .png
Files are PNGs and not SVGs so drop that in the filenames and respective references. Bug-AGL: SPEC-3035 Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com> Change-Id: I2f693d886bb22b3464ff8cbbbd1ee0a23cfdf69c
Diffstat (limited to 'app/BtnMapDirection.qml')
-rw-r--r--app/BtnMapDirection.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/BtnMapDirection.qml b/app/BtnMapDirection.qml
index 80f16ce..c56f0bf 100644
--- a/app/BtnMapDirection.qml
+++ b/app/BtnMapDirection.qml
@@ -28,17 +28,17 @@ Item {
height: 92
anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter
- source: "images/202px-Compass-icon_bb_N.svg.png"
+ source: "images/202px-Compass-icon_bb_N.png"
}
states: [
State {
name: "HeadingUp"
- PropertyChanges { target: image; source: "images/240px-Compass_icon_NE.svg.png" }
+ PropertyChanges { target: image; source: "images/240px-Compass_icon_NE.png" }
},
State {
name: "NorthUp"
- PropertyChanges { target: image; source: "images/202px-Compass-icon_bb_N.svg.png" }
+ PropertyChanges { target: image; source: "images/202px-Compass-icon_bb_N.png" }
}
]
}