Index: sources/gui/qml/dialogs/StatusDialog.qml =================================================================== diff -u -r06152733946baf8da998803721e9013f48078f48 -rd1c6d835c562ff192b6b89cf9962b2f994dacaec --- sources/gui/qml/dialogs/StatusDialog.qml (.../StatusDialog.qml) (revision 06152733946baf8da998803721e9013f48078f48) +++ sources/gui/qml/dialogs/StatusDialog.qml (.../StatusDialog.qml) (revision d1c6d835c562ff192b6b89cf9962b2f994dacaec) @@ -66,10 +66,11 @@ model: [] Row { + spacing : 5 width: _root.width - _closeButton.width Text { id: _text objectName : _root.textObjectName + index - width : parent.width/2 + width : text == "" ? 0 : parent.width/2 // set width to 0 to have only one line of text text : (index < _root.infoLabels.length) ? _root.infoLabels[index] : "" color : Colors.textMain font.pixelSize : fontPixelSizeText @@ -78,11 +79,11 @@ } Text { objectName : _root.textObjectName + "L" + index - width : parent.width/2 - text : " " + modelData + width : text === "" ? 0 : parent.width/2 // set width to 0 to have only one line of text + text : modelData color : Colors.textMain font.pixelSize : fontPixelSizeText - font.family: Fonts.fontFamilyFixed + font.family : Fonts.fontFamilyFixed horizontalAlignment: Text.AlignLeft } }