diff --git a/qgcresources.qrc b/qgcresources.qrc index 24aba6af8e02680c712ff63ca693ec4aedefa59e..a334c0e8e1ba8f1d3baf9b71e365ca50b1d7e92e 100644 --- a/qgcresources.qrc +++ b/qgcresources.qrc @@ -57,7 +57,7 @@ src/AutoPilotPlugins/Common/Images/HelicopterCoaxial.svg src/AutoPilotPlugins/Common/Images/wifi.svg src/QmlControls/arrow-down.png - resources/camera.svg + resources/camera.svg src/Camera/images/camera_photo.svg src/Camera/images/camera_video.svg src/QmlControls/checkbox-check.svg @@ -186,6 +186,8 @@ src/FlightMap/Images/AlertAircraft.svg src/FlightMap/Images/AwarenessAircraft.svg resources/check.svg + src/FlightMap/Images/Target.svg + src/FlightMap/Images/TargetBlack.svg resources/action.svg @@ -200,7 +202,7 @@ resources/counter-clockwise-arrow.svg resources/chevron-down.svg resources/chevron-up.svg - resources/DropArrow.svg + resources/DropArrow.svg resources/gear-black.svg resources/gear-white.svg resources/helicoptericon.svg @@ -213,7 +215,7 @@ resources/Play.svg resources/PowerButton.svg resources/QGCLogoBlack.svg - resources/QGCLogoFull.svg + resources/QGCLogoFull.svg resources/QGCLogoWhite.svg resources/QGCLogoArrow.svg resources/QGroundControlConnect.svg diff --git a/src/FlightMap/Images/Target.svg b/src/FlightMap/Images/Target.svg new file mode 100644 index 0000000000000000000000000000000000000000..049e39fd04ee992b86185130644a60d0728a02bc --- /dev/null +++ b/src/FlightMap/Images/Target.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/FlightMap/Images/TargetBlack.svg b/src/FlightMap/Images/TargetBlack.svg new file mode 100644 index 0000000000000000000000000000000000000000..2126c4dc484f26873473aad1cf05f8f5fdcd2c40 --- /dev/null +++ b/src/FlightMap/Images/TargetBlack.svg @@ -0,0 +1,138 @@ + + + + + + Target + + + + + + + + + + + + + + image/svg+xml + + + + + Openclipart + + + Target + 2012-02-15T07:37:04 + Target symbol + https://openclipart.org/detail/168253/target-by-fanda@cz + + + Fanda@CZ + + + + + target + + + + + + + + + + + diff --git a/src/QuadView/QuadView.qml b/src/QuadView/QuadView.qml index 15f81051084a0e17a4f27c23f544907f47fe33a4..fdde5fef2217a4c701d6eb0d32d64492c411b27f 100644 --- a/src/QuadView/QuadView.qml +++ b/src/QuadView/QuadView.qml @@ -588,7 +588,7 @@ QGCView { rotateImage: [ masterController.syncInProgress, false, false, false, false, false, false ] animateImage: [ masterController.dirty, false, false, false, false, false, false ] buttonEnabled: [ !masterController.syncInProgress, true, true, true, true, true, true ] - buttonVisible: [ true, true, _waypointsOnlyMode, true, true, _showZoom, _showZoom ] + buttonVisible: [ true, true, true, true, true, _showZoom, _showZoom ] maxHeight: mapScale.y - toolStrip.y property bool _showZoom: !ScreenTools.isMobile @@ -607,7 +607,7 @@ QGCView { }, { name: qsTr("ROI"), - iconSource: "/qmlimages/MapAddMission.svg", + iconSource: "/qmlimages/Target.svg", toggle: true }, { @@ -649,7 +649,7 @@ QGCView { editorMap.zoomLevel += 0.5 break case 6: - editorMap.zoomLevel -= 0.5 + //editorMap.zoomLevel -= 0.5 break } }