diff --git a/src/qml/main.qml b/src/qml/main.qml --- a/src/qml/main.qml +++ b/src/qml/main.qml @@ -73,9 +73,14 @@ 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 +90,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 +106,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