Commit 00145067 authored by Tomaz Canabrava's avatar Tomaz Canabrava

Don't translate Cartesian Coordinates

Signed-off-by: 's avatarTomaz Canabrava <tomaz.canabrava@intel.com>
parent 5f005e57
...@@ -84,7 +84,7 @@ QGCFlickable { ...@@ -84,7 +84,7 @@ QGCFlickable {
QGCLabel { QGCLabel {
id: xBarLabel id: xBarLabel
color: textColor color: textColor
text: qsTr("X") text: "X"
anchors.horizontalCenter: xBar.horizontalCenter anchors.horizontalCenter: xBar.horizontalCenter
} }
} }
...@@ -102,7 +102,7 @@ QGCFlickable { ...@@ -102,7 +102,7 @@ QGCFlickable {
QGCLabel { QGCLabel {
anchors.horizontalCenter: yBar.horizontalCenter anchors.horizontalCenter: yBar.horizontalCenter
color: textColor color: textColor
text: qsTr("Y") text: "Y"
} }
} }
...@@ -119,7 +119,7 @@ QGCFlickable { ...@@ -119,7 +119,7 @@ QGCFlickable {
QGCLabel { QGCLabel {
anchors.horizontalCenter: zBar.horizontalCenter anchors.horizontalCenter: zBar.horizontalCenter
color: textColor color: textColor
text: qsTr("Z") text: "Z"
} }
} }
} // Row } // Row
......
...@@ -45,7 +45,7 @@ Item { ...@@ -45,7 +45,7 @@ Item {
Text { Text {
id: _textMeasure id: _textMeasure
text: qsTr("X") text: "X"
property real fontWidth: contentWidth * (ScreenToolsController.testHighDPI ? 2 : 1) property real fontWidth: contentWidth * (ScreenToolsController.testHighDPI ? 2 : 1)
property real fontHeight: contentHeight * (ScreenToolsController.testHighDPI ? 2 : 1) property real fontHeight: contentHeight * (ScreenToolsController.testHighDPI ? 2 : 1)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment