Index: sources/gui/qml/dialogs/headerbar/HeaderbarInformation.qml =================================================================== diff -u -r164ece178bc4bbe6d31605e6ee711f513bdfc48a -rbea36be2766046e63c4e82539a630b5cee7ce1c6 --- sources/gui/qml/dialogs/headerbar/HeaderbarInformation.qml (.../HeaderbarInformation.qml) (revision 164ece178bc4bbe6d31605e6ee711f513bdfc48a) +++ sources/gui/qml/dialogs/headerbar/HeaderbarInformation.qml (.../HeaderbarInformation.qml) (revision bea36be2766046e63c4e82539a630b5cee7ce1c6) @@ -1,5 +1,6 @@ import QtQuick 2.12 +import "qrc:/" import "qrc:/components" import "qrc:/globals" @@ -8,6 +9,7 @@ readonly property int rightColumnWidth : 325 readonly property int leftColumnWidth : 170 readonly property int columnSpacing : Variables.defaultMargin * 3 + readonly property color infoColor : "#2E5E92" readonly property var _dataModel: [ { name: qsTr("OS Version" ) , value: vDevice.osVersion }, @@ -48,7 +50,7 @@ anchors.verticalCenter: parent.verticalCenter Text { id: _name - color : "#2E5E92" + color : _root.infoColor text : modelData.name width : leftColumnWidth font.pixelSize : Fonts.fontPixelDialogText @@ -77,6 +79,11 @@ } } + SDCInfo { id: _sdCardInfo + width : parent.width + height : 75 + } + Row { id: _qrRow spacing : Variables.defaultMargin anchors.left : parent.left @@ -87,8 +94,8 @@ Text { id: _qrCodeInstructions anchors.bottom : _qrCode.bottom - text : qsTr("Scan for electronic instructions for use (eIFU)" ) - color : Colors.dialogText + text : qsTr("Customer Service Number: %1\nScan for electronic instructions for use (eIFU)").arg("(123) 456-7890") + color : _root.infoColor font.pixelSize : Fonts.fontPixelDialogText } }