Index: sources/gui/qml/components/InformationSubTable.qml =================================================================== diff -u -r21e68ccf5594b0ca3e0a8c7986e405260d273899 -rc3bf2cd135f9351e16eb0f4237f71a7be38a4ce4 --- sources/gui/qml/components/InformationSubTable.qml (.../InformationSubTable.qml) (revision 21e68ccf5594b0ca3e0a8c7986e405260d273899) +++ sources/gui/qml/components/InformationSubTable.qml (.../InformationSubTable.qml) (revision c3bf2cd135f9351e16eb0f4237f71a7be38a4ce4) @@ -26,6 +26,9 @@ property var leftColumnValues : [] property var rightColumnKeys : [] property var rightColumnValues : [] + property var leftColumnWidth : _root.width / 2 + property var rightColumnWidth : _root.width / 2 + property var valueLeftMargin : 3*Variables.informationTableMargin objectName: "InformationSubTable" color: Colors.transparent @@ -34,12 +37,13 @@ top: parent.top topMargin: Variables.sliderTextMargin } - width: _root.width / 2 + width: leftColumnWidth Repeater { id: _leftColumnRepeater model: leftColumnKeys InformationTableEntry { key : leftColumnKeys[index] value : leftColumnValues[index] + valueLeftMargin: _root.valueLeftMargin } } } @@ -50,12 +54,13 @@ topMargin : Variables.sliderTextMargin left : _leftColumn.right } - width: _root.width / 2 + width: rightColumnWidth Repeater { id: _operating_repeater model: rightColumnKeys InformationTableEntry { key : rightColumnKeys[index] value: rightColumnValues[index] + valueLeftMargin: _root.valueLeftMargin } } }