From 0014506778dd2d5c12e632a8ecd477dd7f3258eb Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Mon, 4 Apr 2016 15:19:51 -0300 Subject: [PATCH] Don't translate Cartesian Coordinates Signed-off-by: Tomaz Canabrava --- src/FlightMap/Widgets/VibrationWidget.qml | 6 +++--- src/QmlControls/ScreenTools.qml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/FlightMap/Widgets/VibrationWidget.qml b/src/FlightMap/Widgets/VibrationWidget.qml index fb28fce64..ee4fe0e88 100644 --- a/src/FlightMap/Widgets/VibrationWidget.qml +++ b/src/FlightMap/Widgets/VibrationWidget.qml @@ -84,7 +84,7 @@ QGCFlickable { QGCLabel { id: xBarLabel color: textColor - text: qsTr("X") + text: "X" anchors.horizontalCenter: xBar.horizontalCenter } } @@ -102,7 +102,7 @@ QGCFlickable { QGCLabel { anchors.horizontalCenter: yBar.horizontalCenter color: textColor - text: qsTr("Y") + text: "Y" } } @@ -119,7 +119,7 @@ QGCFlickable { QGCLabel { anchors.horizontalCenter: zBar.horizontalCenter color: textColor - text: qsTr("Z") + text: "Z" } } } // Row diff --git a/src/QmlControls/ScreenTools.qml b/src/QmlControls/ScreenTools.qml index cfd34b068..7dd248240 100644 --- a/src/QmlControls/ScreenTools.qml +++ b/src/QmlControls/ScreenTools.qml @@ -45,7 +45,7 @@ Item { Text { id: _textMeasure - text: qsTr("X") + text: "X" property real fontWidth: contentWidth * (ScreenToolsController.testHighDPI ? 2 : 1) property real fontHeight: contentHeight * (ScreenToolsController.testHighDPI ? 2 : 1) } -- 2.22.0