diff options
Diffstat (limited to 'qml/mw-ui.qml')
-rw-r--r-- | qml/mw-ui.qml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index 731f5a0..bf2fd69 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -567,7 +567,7 @@ It is highly recommended that you update your system regularly. An Update icon w id: repotag Rectangle { color: "red" - radius: 5 + radius: 3 width: 70; height: 20 Label { anchors.centerIn: parent @@ -582,11 +582,13 @@ It is highly recommended that you update your system regularly. An Update icon w Loader { Component { id: button; Button { + width: view.width * .07 objectName: "launch" onClicked: { launch.command(["gurpmi",name,])} style: ButtonStyle { label: Label { + horizontalAlignment: TextInput.AlignHCenter text: qsTr("Install"); } } @@ -594,11 +596,13 @@ It is highly recommended that you update your system regularly. An Update icon w } Component { id: launcher; Button { + width: view.width * .07 objectName: "launch" onClicked: { launch.command([command,])} style: ButtonStyle { label: Label { + horizontalAlignment: TextInput.AlignHCenter text: qsTr("Launch"); } } |