Browse Source

Wrap text

QGC4.4
Don Gagne 7 years ago
parent
commit
72b4fb0748
  1. 16
      src/QtLocationPlugin/QMLControl/OfflineMap.qml

16
src/QtLocationPlugin/QMLControl/OfflineMap.qml

@ -286,7 +286,12 @@ QGCView { @@ -286,7 +286,12 @@ QGCView {
Item { width: 1; height: 1 }
QGCLabel { text: qsTr("Max Cache Memory Size (MB):") }
QGCLabel {
anchors.left: parent.left
anchors.right: parent.right
wrapMode: Text.WordWrap
text: qsTr("Max Cache Memory Size (MB):")
}
QGCTextField {
id: maxCacheMemSize
@ -297,6 +302,9 @@ QGCView { @@ -297,6 +302,9 @@ QGCView {
}
QGCLabel {
anchors.left: parent.left
anchors.right: parent.right
wrapMode: Text.WordWrap
font.pointSize: _adjustableFontPointSize
text: qsTr("Memory cache changes require a restart to take effect.")
}
@ -310,6 +318,9 @@ QGCView { @@ -310,6 +318,9 @@ QGCView {
width: ScreenTools.defaultFontPixelWidth * 30
}
QGCLabel {
anchors.left: parent.left
anchors.right: parent.right
wrapMode: Text.WordWrap
text: qsTr("To enable Mapbox maps, enter your access token.")
visible: _mapboxFact ? _mapboxFact.visible : false
font.pointSize: _adjustableFontPointSize
@ -324,6 +335,9 @@ QGCView { @@ -324,6 +335,9 @@ QGCView {
width: ScreenTools.defaultFontPixelWidth * 30
}
QGCLabel {
anchors.left: parent.left
anchors.right: parent.right
wrapMode: Text.WordWrap
text: qsTr("To enable Esri maps, enter your access token.")
visible: _esriFact ? _esriFact.visible : false
font.pointSize: _adjustableFontPointSize

Loading…
Cancel
Save