diff --git a/src/qml/main.qml b/src/qml/main.qml --- a/src/qml/main.qml +++ b/src/qml/main.qml @@ -66,16 +66,22 @@ top: previewImage.bottom left: previewImage.left right: previewImage.right + topMargin: 2 } columns: 2 Text { color: palette.text text: description font.bold: true - font.pointSize: 13 + font.pointSize: 10 + Layout.maximumWidth: texttable.width - versionNumber.width * 2 + elide: Text.ElideRight + maximumLineCount: 2 + wrapMode: Text.Wrap } Text { + id: versionNumber color: palette.text text: version font.bold: true @@ -85,9 +91,13 @@ Text { color: palette.text text: authorName - font.pointSize: 10 + font.pointSize: 9 + Layout.maximumWidth: texttable.width - licenseInfo.width * 2 + elide: Text.ElideRight + maximumLineCount: 1 } Text { + id: licenseInfo color: palette.text text: license font.pointSize: 7 @@ -97,8 +107,12 @@ color: palette.text text: website font.pointSize: 7 + Layout.maximumWidth: texttable.width - emailAddress.width * 2 + elide: Text.ElideRight + maximumLineCount: 1 } Text { + id: emailAddress color: palette.text text: email font.pointSize: 7