summaryrefslogtreecommitdiffstats
path: root/qml
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2018-12-08 12:11:37 +0100
committerPapoteur <papoteur@mageia.org>2018-12-17 10:19:29 +0100
commit8c368db884f47c9c6b83c3a1b6ca14532c7c70d8 (patch)
treebaab2c37bbb8f1d13fb7576c49c62b8d02e6b298 /qml
parentf7364e1ca95fa207acaee989b9645538f806f87b (diff)
downloadmageiawelcome-8c368db884f47c9c6b83c3a1b6ca14532c7c70d8.tar
mageiawelcome-8c368db884f47c9c6b83c3a1b6ca14532c7c70d8.tar.gz
mageiawelcome-8c368db884f47c9c6b83c3a1b6ca14532c7c70d8.tar.bz2
mageiawelcome-8c368db884f47c9c6b83c3a1b6ca14532c7c70d8.tar.xz
mageiawelcome-8c368db884f47c9c6b83c3a1b6ca14532c7c70d8.zip
Restore launching command buttons
Diffstat (limited to 'qml')
-rw-r--r--qml/mw-ui.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml
index c7b2857..e00c5f7 100644
--- a/qml/mw-ui.qml
+++ b/qml/mw-ui.qml
@@ -102,7 +102,7 @@ and help you with the configuration of your newly installed system.
Button {
Layout.maximumWidth: slideshow.width * .25
objectName: "launch"
- onClicked: { launch.command("drakrpm-edit-media")}
+ onClicked: { launch.command(["drakrpm-edit-media",])}
style: ButtonStyle {
label: Label {
text: qsTr("Edit software repositories")+" *";
@@ -187,7 +187,7 @@ It is highly recommended that you update your system regularly. An Update icon w
anchors.verticalCenter: parent.verticalCenter
Button {
objectName: "launch"
- onClicked:{ launch.command("drakrpm-update")}
+ onClicked:{ launch.command(["drakrpm-update",])}
style: ButtonStyle {
label: Label {
text: qsTr("Check system update");
@@ -232,7 +232,7 @@ It is highly recommended that you update your system regularly. An Update icon w
Button {
id: mcc
objectName: "launch"
- onClicked: { launch.command("drakconf")}
+ onClicked: { launch.command(["drakconf"])}
style: ButtonStyle {
label: Label {
text: qsTr("Mageia Control Center");