diff options
Diffstat (limited to 'app/BtnEnlarge.qml')
-rw-r--r-- | app/BtnEnlarge.qml | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/app/BtnEnlarge.qml b/app/BtnEnlarge.qml index 229b5f1..1a261d6 100644 --- a/app/BtnEnlarge.qml +++ b/app/BtnEnlarge.qml @@ -1,24 +1,24 @@ -import QtQuick 2.0
-import QtQuick.Controls 1.5
-
-Item {
- Button {
- width: 100
- height: 100
-
- function zoomUp() {
- map.zoomLevel += 1
- }
-
- onClicked: { zoomUp() }
-
- Image {
- id: image
- width: 92
- height: 92
- anchors.verticalCenter: parent.verticalCenter
- anchors.horizontalCenter: parent.horizontalCenter
- source: "images/240px-Antu_kdenlive-zoom-large.svg.png"
- }
- }
-}
+import QtQuick 2.0 +import QtQuick.Controls 1.5 + +Item { + Button { + width: 100 + height: 100 + + function zoomUp() { + map.zoomLevel += 1 + } + + onClicked: { zoomUp() } + + Image { + id: image + width: 92 + height: 92 + anchors.verticalCenter: parent.verticalCenter + anchors.horizontalCenter: parent.horizontalCenter + source: "images/240px-Antu_kdenlive-zoom-large.svg.png" + } + } +} |