Index: sources/gui/qml/components/DebugDataColumn.qml =================================================================== diff -u -rad3f3812cdfb38c423be5ace9a1d6f7acb4b68ee -r91c381afa3a5a01579d47a603600f1a56c8ab5b6 --- sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision ad3f3812cdfb38c423be5ace9a1d6f7acb4b68ee) +++ sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision 91c381afa3a5a01579d47a603600f1a56c8ab5b6) @@ -34,9 +34,9 @@ property bool isTouchRect : false property bool isOpened : false - width : _column.implicitWidth + width : isTouchRect ? _column.implicitWidth : 258 height : isTouchRect || isOpened ? _column.implicitHeight + 10 : _column.headerHeight - radius : 12 + radius : 5 color : Colors.panelBackgroundColor clip : true @@ -55,11 +55,13 @@ Column { id: _column property alias headerHeight: _header.height + width: parent.width + Rectangle { id: _header width : _column.width height : _title.implicitHeight + 10 color : "#3A5A7B" - radius : 6 + radius : 5 visible : _title.text.length > 0 border { @@ -97,9 +99,11 @@ height : implicitHeight horizontalAlignment : _root.horizontalAlignmentText color : Colors.offWhite - font.pixelSize : fontPixelSizeText - font.family : Fonts.fontFamilyFixed - font.weight : Font.Light + font { + pixelSize : isTouchRect ? 23 : fontPixelSizeText + family : Fonts.fontFamilyFixed + weight : Font.Light + } verticalAlignment : Text.AlignTop elide : Text.ElideRight } @@ -109,9 +113,12 @@ text : (index < _root.label.length) ? _root.label[index] : "" color : Colors.offWhite height : _value.implicitHeight - font.pixelSize : fontPixelSizeLabel horizontalAlignment : Text.AlignLeft - font.family : Fonts.fontFamilyFixed + font { + pixelSize : fontPixelSizeLabel + family : Fonts.fontFamilyFixed + weight : Font.Light + } verticalAlignment : Text.AlignVCenter } }