diff options
-rw-r--r-- | qml/mw-ui.qml | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index b6dea71..57317aa 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -12,11 +12,13 @@ Rectangle { property alias view: view Rectangle { id: banner + opacity: 0.95 + layer.enabled: true width: parent.width;height: 120 LinearGradient { anchors.fill: parent start: Qt.point(0, 0) - end: Qt.point(0, 300) + end: Qt.point(0, 400) gradient: Gradient { GradientStop { position: 0.0; color: "lightgray" } GradientStop { position: 1.0; color: "white" } @@ -463,12 +465,13 @@ Rectangle { // Bandeau avertissement id: warning width: view.width - height: 60 + height: 45 color: "gold" - Label {anchors {verticalCenter: parent.verticalCenter; } - leftPadding: 15 - text: qsTr("Here is a small selection of popular applications - any of which may be installed at this point.")+"<BR />"+ - "You can install an application or launch it if already installed. Ensure that you have enabled the <i>Media sources</i>." + Label {anchors {verticalCenter: parent.verticalCenter; horizontalCenter: parent.horizontalCenter} + horizontalAlignment: TextInput.AlignHCenter + font.pixelSize: Qt.application.font.pixelSize * .9 + text: qsTr("Here is a small selection of popular applications - any of which may be installed at this point (ensure that you enabled the <i>Media sources</i>).")+"<BR />"+ + "You can install an application, or launch it if already installed. Longer software lists are scrollable." textFormat: Text.RichText } } |