diff options
author | Papoteur <papoteur@mageia.org> | 2018-12-08 12:11:37 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2018-12-15 15:46:34 +0100 |
commit | b0e7dc102c5f72d3aaa6fa8bbef634077679152d (patch) | |
tree | f8f0edc3d97f25647299c4a37bee6e633d45dc9e | |
parent | e0224d6dfdcea8f90ecab1beda041b5da5c46bad (diff) | |
download | mageiawelcome-b0e7dc102c5f72d3aaa6fa8bbef634077679152d.tar mageiawelcome-b0e7dc102c5f72d3aaa6fa8bbef634077679152d.tar.gz mageiawelcome-b0e7dc102c5f72d3aaa6fa8bbef634077679152d.tar.bz2 mageiawelcome-b0e7dc102c5f72d3aaa6fa8bbef634077679152d.tar.xz mageiawelcome-b0e7dc102c5f72d3aaa6fa8bbef634077679152d.zip |
Restore launching command buttons
-rw-r--r-- | qml/mw-ui.qml | 6 |
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"); |