diff options
author | 2019-09-06 02:03:22 -0700 | |
---|---|---|
committer | 2019-09-17 17:35:53 -0700 | |
commit | 35e6bf8d3b2efbac511f9e1d9db133aa078c10fe (patch) | |
tree | 7010f1eb58183eb70f4dfc60bfe0393a72d7e14a /app/BtnShrink.qml | |
parent | 9a5b7d86347c17b22b767e5da0f79f469af5ec97 (diff) |
Run dos2unix on entire repo
Remove CR+LF line endings on most files in the repo
Bug-AGL: SPEC-2667
Change-Id: I8ad7cd9ea20658dabdecf8ce14a51cb8a851b999
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'app/BtnShrink.qml')
-rw-r--r-- | app/BtnShrink.qml | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/app/BtnShrink.qml b/app/BtnShrink.qml index 1387557..a028bce 100644 --- a/app/BtnShrink.qml +++ b/app/BtnShrink.qml @@ -1,25 +1,25 @@ -import QtQuick 2.0
-import QtQuick.Controls 1.5
-
-Item {
- Button {
- id: btn_shrink
- width: 100
- height: 100
-
- function zoomDown() {
- map.zoomLevel -= 1
- }
-
- onClicked: { zoomDown() }
-
- Image {
- id: image
- width: 92
- height: 92
- anchors.verticalCenter: parent.verticalCenter
- anchors.horizontalCenter: parent.horizontalCenter
- source: "images/240px-Antu_file-zoom-out.svg.png"
- }
- }
-}
+import QtQuick 2.0 +import QtQuick.Controls 1.5 + +Item { + Button { + id: btn_shrink + width: 100 + height: 100 + + function zoomDown() { + map.zoomLevel -= 1 + } + + onClicked: { zoomDown() } + + Image { + id: image + width: 92 + height: 92 + anchors.verticalCenter: parent.verticalCenter + anchors.horizontalCenter: parent.horizontalCenter + source: "images/240px-Antu_file-zoom-out.svg.png" + } + } +} |