Index: sources/gui/qml/components/InformationTableEntry.qml =================================================================== diff -u -r21e68ccf5594b0ca3e0a8c7986e405260d273899 -rc3bf2cd135f9351e16eb0f4237f71a7be38a4ce4 --- sources/gui/qml/components/InformationTableEntry.qml (.../InformationTableEntry.qml) (revision 21e68ccf5594b0ca3e0a8c7986e405260d273899) +++ sources/gui/qml/components/InformationTableEntry.qml (.../InformationTableEntry.qml) (revision c3bf2cd135f9351e16eb0f4237f71a7be38a4ce4) @@ -32,6 +32,7 @@ property var value: "Value" height: Variables.informationSubTableHeight width: Variables.informationSubTableWidth + property var valueLeftMargin : 3*Variables.informationTableMargin color: "transparent" Line { @@ -59,9 +60,12 @@ objectName: value + index color: Colors.textMain text: value + clip: true + elide: Text.ElideRight + width: Variables.informationTableWidth / 5 anchors.left: _line.horizontalCenter anchors.verticalCenter: _root.verticalCenter - anchors.leftMargin: 3*Variables.informationTableMargin + anchors.leftMargin: _root.valueLeftMargin font.pixelSize: Fonts.fontInformationTablePixel } }