Index: sources/gui/qml/dialogs/headerbar/InformationDialog.qml =================================================================== diff -u -r439d098232ba83b858fb7a2e4f8fb2daf3744366 -r8d1e6f222d50104f2d278424d78c7c418da56ac6 --- sources/gui/qml/dialogs/headerbar/InformationDialog.qml (.../InformationDialog.qml) (revision 439d098232ba83b858fb7a2e4f8fb2daf3744366) +++ sources/gui/qml/dialogs/headerbar/InformationDialog.qml (.../InformationDialog.qml) (revision 8d1e6f222d50104f2d278424d78c7c418da56ac6) @@ -4,7 +4,7 @@ import "qrc:/globals" HeaderBarPopup { id: _root - padding : Variables.defaultMargin + padding : Variables.defaultMargin * 2 property var _dataModel: [ { name: qsTr("OS Version" ) , value: vDevice.osVersion }, @@ -56,22 +56,22 @@ height : _versionColumn.implicitHeight Column { id: _versionColumn - spacing : 10 anchors.fill: parent Repeater { model: _dataModel delegate: Item { id: _delegate width : _versionColumn.width - height : _name.implicitHeight + height : 40 Row { id: _row spacing : _columnSpacing width : _versionColumn.width + anchors.verticalCenter: parent.verticalCenter Text { id: _name - color : Colors.backgroundMenu + color : "#2E5E92" text : modelData.name width : _leftColumnWidth font.pixelSize : Fonts.fontPixelDialogText @@ -80,7 +80,7 @@ } Text { id: _value - color : Colors.dialogText + color : "grey" text : modelData.value width : _rightColumnWidth font.pixelSize : 20 @@ -90,25 +90,25 @@ } Line { id : _spacerLine - length : _versionList.width - visible : index > 0 - color : Colors.dialogShadowColor + anchors.bottom : parent.bottom + length : _versionList.width + color : Colors.dialogShadowColor } } } } } Row { id: _qrRow - spacing : Variables.defaultMargin * 2 - anchors.horizontalCenter: parent.horizontalCenter + spacing : Variables.defaultMargin + anchors.left : parent.left QRCode { id: _qrCode anchors.verticalCenter: parent.verticalCenter } Text { id: _qrCodeInstructions - anchors.verticalCenter : parent.verticalCenter + anchors.bottom : _qrCode.bottom text : qsTr("Scan for electronic instructions for use (eIFU)" ) color : Colors.dialogText font.pixelSize : Fonts.fontPixelDialogText