summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2018-12-08 12:11:37 +0100
committerPapoteur <papoteur@mageia.org>2018-12-15 15:46:34 +0100
commitb0e7dc102c5f72d3aaa6fa8bbef634077679152d (patch)
treef8f0edc3d97f25647299c4a37bee6e633d45dc9e
parente0224d6dfdcea8f90ecab1beda041b5da5c46bad (diff)
downloadmageiawelcome-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.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");